我试图根据因素对数据框进行子集化。然而,即使在子集化后,R也显示出其他因素。
例如,在R中包含的虹膜数据集中,我想创建一个仅包含Setosa物种的子集。然而,即使在子集化R之后,显示在浏览数据时有3个因素仅显示Setosa。这是为什么?
提前致谢
#Load Data
library(datasets)
data(iris)
#Subset specie into new data frame only containing Setosa oberservations
sub = iris[iris$Species == "setosa",]
#View sub data frame. Why are there still three levels?
str(sub)
'data.frame': 50 obs. of 5 variables:
$ Sepal.Length: num 5.1 4.9 4.7 4.6 5 5.4 4.6 5 4.4 4.9 ...
$ Sepal.Width : num 3.5 3 3.2 3.1 3.6 3.9 3.4 3.4 2.9 3.1 ...
$ Petal.Length: num 1.4 1.4 1.3 1.5 1.4 1.7 1.4 1.5 1.4 1.5 ...
$ Petal.Width : num 0.2 0.2 0.2 0.2 0.2 0.4 0.3 0.2 0.2 0.1 ...
$ Species : Factor w/ 3 levels "setosa","versicolor",..: 1 1 1 1 1 1 1 1 1 1 ...
答案 0 :(得分:0)
因为R保持因子水平。您可以使用droplevels
函数删除它们。