首页 > 解决方案 > 显示仅作为因子的列名

问题描述

有没有办法只提取作为因素的列名。例如,在 iris 数据集中,最后一列是一个因素,因此应该只提取 Species(列名而不是整列)

> head(iris)
  Sepal.Length Sepal.Width Petal.Length Petal.Width Species
1          5.1         3.5          1.4         0.2  setosa
2          4.9         3.0          1.4         0.2  setosa
3          4.7         3.2          1.3         0.2  setosa
4          4.6         3.1          1.5         0.2  setosa
5          5.0         3.6          1.4         0.2  setosa
6          5.4         3.9          1.7         0.4  setosa
> str(head(iris))
'data.frame':   6 obs. of  5 variables:
 $ Sepal.Length: num  5.1 4.9 4.7 4.6 5 5.4
 $ Sepal.Width : num  3.5 3 3.2 3.1 3.6 3.9
 $ Petal.Length: num  1.4 1.4 1.3 1.5 1.4 1.7
 $ Petal.Width : num  0.2 0.2 0.2 0.2 0.2 0.4
 $ Species     : Factor w/ 3 levels "setosa","versicolor",..: 1 1 1 1 1 1

标签: r

解决方案


我们可以用 :

names(iris)[sapply(iris, is.factor)]
#[1] "Species"

或使用Filter

names(Filter(is.factor, iris))

推荐阅读