我有一个名为AE
的 Dataframe ,通常我将行名称设置为NULL以允许rbind
。在这种情况下,当我这样做时,行.名称仍然是“1”,“2”,并且不允许绑定。我不明白这个data.frame有什么不同。
#load Data
AE <- structure(list(mean = c(0.363510076570372, 0.636489923429628),
SE = c(0.00728114835455055, 0.00728114835455055), grp = c("D",
"DP"), level = c("fair or poor health",
"good or better health"), counts = structure(list(counts = c(25405L,
25405L)), row.names = c("counts", "counts1"), class = "data.frame")), row.names = c(NA,
-2L), class = "data.frame")
#remove rownames
rownames( AE ) <- NULL
#this is the line i want to work
rbind( AE, AE)
1条答案
按热度按时间vfh0ocws1#
主要原因是其中一列是
data.frame
。我们可能需要将其转换为常规列
或者使用
tidyverse
、unpack
转换为常规列,然后使用bind_rows