我有这样的数据代码包含数据
dat<-data.frame(A=c("V1","V2","V3","V4"), B=c("V1","V2","V3","V5"))
我想将每个组合并打印输出为
A的输出
V1=>V2V3V4
V2=>V1V3V4
V3=>V1V2V4
V1V2=>V3V4
V1V3=>V2V4
V3V4=>V1V2
V2V4=>V1V3
V2V3V4=>V1
V1V3V4=>V2
V1V2V4=>V3
类似的方式 B 组合我的代码是
vd<-data.frame()
vd<-data.frame(A=c("V1","V2","V3","V4"),B=c("V1","V2","V3","V4"))
vf<-length(vd)
i<-1
while(i<=vf)
{
vd<-dat[,i]
leng<-nrow(dat)
selectru<-combn(vd,leng)
fst<-selectru[i]
select<-data.frame()
select<-selectru[selectru[,1]!=selectru[i],]
m<-length(select)
select<-combn(select,m)
snd <-apply(select,2,function(rows) paste0(rows, collapse = ""))
cat(sprintf("\"%s\" =>\"%s\"\n", fst, snd))
i<-i+1
}
此代码不起作用。我不能在单个中存储多个组合data.frame
。那就是问题所在