Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何从 gdf 添加/删除行?例子
DataFrame <- data.frame(cbind(x=1, y=1:10)) obj <- gdf(DataFrame, container = TRUE)
我们如何从 obj 添加/删除行?
好吧,在设计中你可以通过 [<-
obj[11,] <- list(x=1, y=11) rownames(obj)[11] <- "new row name"
这适用于 gWidgetsRGtk2(有一些关于颜色的抱怨),但可能不适用于其他工具包。(甚至没有 github 上的 gWidgets2RGtk2,这是要修复的!)
至于删除行,可以这样做:
obj[] <- obj[-5,]
再次在 gWidgetsRGtk2 中工作,但在 YMMV 中使用其他工具包。