","virginica": 1 1 1 1 1 1 1 1 1 1 ...
2.通过链接读取数据
site <- "http://random.org/integers/" # 这是一个生成随机数的网站...(5),y=runif(5))
names(df) <- 1:2
取第一列,如果是这样则会报错:
df$1
报一个“错误: unexpected numeric constant in "df$1"”的错误...但是这样可以:
df$`1`
df$后tab键提示出来也是会有反引号的。...:
irisSL <- iris$Sepal.Length
# 分成五个bins
cut(irisSL, 5)
# 也可以按我们想要的范围分割
cut(irisSL, breaks = seq(1,8,1...))
可以用table统计每个范围的数目:
table(cut(irisSL, 5))
返回:
(4.9,5.5] (5.5,6.1] (6.1,6.7] (6.7,7.3] (7.3,7.9]
12