R语言初上手
下载及安装R及Rstudio
了解Rstudio
- 了解Rstudio的界面及字体设置
- 用plot及boxplot画两个简单的图
plot(rnorm(50))
boxplot(iris$Sepal.Length~iris$Species,col = c("lightblue","lightyellow","lightpink"))
R语言基本操作
利用Rproject管理多个R工作目录
显示文件列表
list.files()
加减乘除
赋值
- 赋值符号用<-
x<- 1+9
删除变量
rm(x)
rm(a,b)
rm(list = ls())
列出历史命令
history()
清空控制台
ctrl+l键