Questions tagged «rbind»

2
为什么rbindlist比rbind“更好”?
我正在浏览文档,data.table并从这里的一些对话中也注意到了rbindlist可能比更好rbind。 我想知道为什么是rbindlist优于rbind以及其中场景rbindlist的确有过人之处过rbind? 在内存利用率方面有什么优势吗?
135 r  data.table  rbind  rbindlist 

8
R:向空数据框中添加行时丢失列名
我只是从R开始,遇到一个奇怪的行为:在空数据框中插入第一行时,原始列名丢失了。 例: a<-data.frame(one = numeric(0), two = numeric(0)) a #[1] one two #<0 rows> (or 0-length row.names) names(a) #[1] "one" "two" a<-rbind(a, c(5,6)) a # X5 X6 #1 5 6 names(a) #[1] "X5" "X6" 如您所见,列名1和2被X5和X6代替。 有人可以告诉我为什么会这样吗,并且有正确的方法来做到这一点而又不会丢失列名吗? shot弹枪解决方案是将名称保存在辅助向量中,然后在完成对数据帧的处理后将其重新添加。 谢谢 内容: 我创建了一个函数,该函数收集一些数据并将它们作为新行添加到作为参数接收的数据帧中。我创建数据框架,遍历数据源,将data.frame传递给每个函数调用以填充其结果。
69 r  dataframe  names  rbind 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.