【发布时间】:2013-11-29 18:17:52
【问题描述】:
所以我有这个清单:
structure(list(scaf = structure(1L, .Label = "HE638", class = "factor"),
pos = 8L, scaf = structure(1L, .Label = "HE638", class = "factor"),
pos = 8L, scaf = structure(1L, .Label = "HE638", class = "factor"),
pos = 8L), .Names = c("scaf", "pos", "scaf", "pos", "scaf",
"pos"))
我想得到一个data.frame,这样两列是scaf和pos
据我所知:
do.call(rbind, poor.loci)
想要的结果:
scaf pos
HE638 8
HE638 8
HE638 8
【问题讨论】: