“虹膜”中有5列,分别是Sepal.Length,Sepal.Width,Petal.Length,Petal.Width和Species。我做了如下尝试:
sapply(iris,unique)
$Sepal.Length
[1] 5.1 4.9 4.7 4.6 5.0 5.4 4.4 4.8 4.3 5.8 5.7 5.2 5.5 4.5 5.3 7.0 6.4 6.9 6.5 6.3 6.6 5.9 6.0 6.1 5.6 6.7 6.2
[28] 6.8 7.1 7.6 7.3 7.2 7.7 7.4 7.9
$Sepal.Width
[1] 3.5 3.0 3.2 3.1 3.6 3.9 3.4 2.9 3.7 4.0 4.4 3.8 3.3 4.1 4.2 2.3 2.8 2.4 2.7 2.0 2.2 2.5 2.6
$Petal.Length
[1] 1.4 1.3 1.5 1.7 1.6 1.1 1.2 1.0 1.9 4.7 4.5 4.9 4.0 4.6 3.3 3.9 3.5 4.2 3.6 4.4 4.1 4.8 4.3 5.0 3.8 3.7 5.1
[28] 3.0 6.0 5.9 5.6 5.8 6.6 6.3 6.1 5.3 5.5 6.7 6.9 5.7 6.4 5.4 5.2
$Petal.Width
[1] 0.2 0.4 0.3 0.1 0.5 0.6 1.4 1.5 1.3 1.6 1.0 1.1 1.8 1.2 1.7 2.5 1.9 2.1 2.2 2.0 2.4 2.3
$Species
[1] setosa versicolor virginica
Error in if (n <= 1L || lenl[n] <= width) n else max(1L, which.max(lenl > :
missing value where TRUE/FALSE needed
已经看到sapply()和unique()已经完成了工作,但是为什么在控制台上显示Error?我尝试使用“ option(error = recover)”;但是,我无法弄清楚...。是因为物种的种类是因子吗?我该如何运作?
实际上,在上旋流课程时,我遇到了同样的问题。它库存了几天我了...有人可以帮我解决问题吗?感谢您的帮助。谢谢。