如何区分R

时间:2017-06-07 10:33:10

标签: r

我是R.In R的新手我们如何区分int和float。如下面的例子我们可以注意到,对于数据帧,虹膜的汽车和虹膜值$ Sepal.Length是双重类型,而汽车$ speed的值是int类型。

我尝试了类和类型,但无法在此处获得必要的答案。

> class(iris$Sepal.Length)
 [1] "numeric"
 > class(cars$speed)
[1] "numeric"
> typeof(cars$speed)
[1] "double"
 > typeof(iris$Sepal.Length)
 [1] "double"
> cars$speed
[1]  4  4  7  7  8  9 10 10 10 11 11 12 12 12 12 13 13 13 13 14 14 14 14
[24] 15 15 15 16 16 17 17 17 18 18 18 18 19 19 19 20 20 20 20 20 22 23 24
[47] 24 24 24 25
> iris$Sepal.Length
 [1] 5.1 4.9 4.7 4.6 5.0 5.4 4.6 5.0 4.4 4.9 5.4 4.8 4.8 4.3 5.8 5.7 5.4
[18] 5.1 5.7 5.1 5.4 5.1 4.6 5.1 4.8 5.0 5.0 5.2 5.2 4.7 4.8 5.4 5.2 5.5

0 个答案:

没有答案