答案 0 :(得分:1)
这些位于attribute of the data.frame
columns called label
which Rstudio visualises中。许多在R中修改对象的操作不会保留这种非必要的属性,因此必须小心。
在您的示例中,您似乎想从data.frame中删除一些列。保持标签完好无损的一种方法是:
数据
df <- iris
attr(df$Species, "label") <- "This is the Species column"
现在删除一些列
df[c(1,2)] <- NULL