由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 在R中, 如何实现没有duplicate的rbind?
相关主题
怎样来选这些dyads请教一个R问题:怎么rbind一系列data,如data1,data2,....data (转载)
关于R的Simplex的错误信息新手学R的困惑。
这个R程序能帮改进一下吗?[合集] 请问如何看到R的source code?
会R的麻烦进一下:R中怎么用SQL? 按道理不应该这么慢的。。。比较傻的一个spss操作问题
怎样用R除掉DUPLICATED RECORD如何找出没有duplicate的数字[done]
help in R突然对直线拟合的R不明白起来了
rbind或者cbind时候,vector的长度不一样怎么办呢?求助两个有关于R的小问题?
R问题求助。R里怎么取出一个数组的1/3?
相关话题的讨论汇总
话题: rbind话题: duplicate话题: aggregate话题: true话题: byrow
进入Statistics版参与讨论
1 (共1页)
a****g
发帖数: 8131
1
thanks.
a****u
发帖数: 95
2
How about using rbind first and aggregate
x<-matrix(1:10,ncol=2,byrow=TRUE)
y<-matrix(1:20,ncol=2,byrow=TRUE)
z<-rbind(x,y)
aggregate(z,by=list(z[,1],z[,2]),FUN=tail,1)
If only duplicate for one column need to be removed, can try use match and
rbind
index<-match(x[,1],y[,1])
rbind(x[-index,],y)
a****g
发帖数: 8131
3
thanks
i got it using aggregate.

【在 a****u 的大作中提到】
: How about using rbind first and aggregate
: x<-matrix(1:10,ncol=2,byrow=TRUE)
: y<-matrix(1:20,ncol=2,byrow=TRUE)
: z<-rbind(x,y)
: aggregate(z,by=list(z[,1],z[,2]),FUN=tail,1)
: If only duplicate for one column need to be removed, can try use match and
: rbind
: index<-match(x[,1],y[,1])
: rbind(x[-index,],y)

I*****a
发帖数: 5425
4
or use unique

【在 a****g 的大作中提到】
: thanks
: i got it using aggregate.

1 (共1页)
进入Statistics版参与讨论
相关主题
R里怎么取出一个数组的1/3?怎样用R除掉DUPLICATED RECORD
请教一个概率题的思路help in R
R questionrbind或者cbind时候,vector的长度不一样怎么办呢?求助
Urgent R QuestionR问题求助。
怎样来选这些dyads请教一个R问题:怎么rbind一系列data,如data1,data2,....data (转载)
关于R的Simplex的错误信息新手学R的困惑。
这个R程序能帮改进一下吗?[合集] 请问如何看到R的source code?
会R的麻烦进一下:R中怎么用SQL? 按道理不应该这么慢的。。。比较傻的一个spss操作问题
相关话题的讨论汇总
话题: rbind话题: duplicate话题: aggregate话题: true话题: byrow