为什么移除一些柱子后头部消失的描述?

时间:2019-07-02 13:28:15

标签: r dataframe rstudio

我有一个数据集,它的标题(列名)是这样的

enter image description here

当我制作一个新的数据框架并删除一些列时,标题的描述就会消失。

 df<-da34714.0001[,]
 df<-df[,-4:-6]

和df就是这样

enter image description here

1 个答案:

答案 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"

enter image description here

现在删除一些列

df[c(1,2)] <- NULL

enter image description here