在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
> which.max(apply(x[c("x1","x2","x3")], 1, sum)) > x$num[which.max(apply(x[c("x1","x2","x3")], 1, sum))] > hist(x$x1) > plot(x$x1,x$x2) > table(x$x1) 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 > barplot(table(x$x1)) > pie(table(x$x2)) > boxplot(x$x1, x$x2, x$x3) > boxplot(x[2:4], col=c("red", "blue", "green"), notch=T) > stars(x[c("x1","x2","x3")]) > stars(x[c("x1","x2","x3")],full=T, draw.segment=T) > faces(x[c("x1","x2","x3")]) > stem(x$x1) The decimal point is at the | 80 | 00000 > stem(x$x2, scale = 1, width = 80, atom = 1e-08) The decimal point is 1 digit(s) to the right of the | 6 | 23 > stem(x$x3, scale = 1, width = 80, atom = 1e-08) The decimal point is 1 digit(s) to the right of the | 3 | 9 > qqnorm(x1) > qqnorm(x2) > qqline(x2)
|
请发表评论