运行 ❯
获取你
自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
# numeric x <- 10.5 class(x) # integer x <- 1000L class(x) # complex x <- 9i + 3 class(x) # character/string x <- "R is exciting" class(x) # logical x <- TRUE class(x)
[1] "数值型"
[1] "整型"
[1] "复数型"
[1] "字符型"
[1] "逻辑型"