下载R https://cran.r-project.org/
> age <- c(1,3,5,2,11,9,3,9,12,3) #赋值用 “<-”,c()向量
> weight <- c(4.4,5.3,7.2,5.2,8.5,7.3,6.0,10.4,10.2,6.4)
> mean(weight) #mean()均值
[1] 7.09
> sd(weight) #sd()标准差
[1] 2.064219
> weight <- c(4.4,5.3,7.2,5.2,8.5,7.3,6.0,10.4,10.2,6.1)
> sd(weight)
[1] 2.077498
> cor(age,weight) #相关度
[1] 0.9075655
> plot(age,weight) #图形
> q() #退出
运行了一些demo,感觉这个好好看。
demo() #查看各种demo
help.start() #帮助