How to remove duplicated columns with the same value regardless of the column names in R?

后端 未结 0 2010
Happy的楠姐
Happy的楠姐 2020-12-01 13:34

Input:

a<- c(1,2,2)
b<- c(1,2,2)
c<- c(1,2,3)
d<- c(0,0,0)
e<- c(0,0,0)

f<- cbind(a,b,c,d,e)

What I want (look at the outc

相关标签:
回答
  • 消灭零回复
提交回复
热议问题