-
啥是R语言和Rstudio
R语言——是一种编程语言,有很多函数,可以绘图
Rstudio——R语言界面很丑不好用,Rstudio是其衍生品,优化了界面和功能,好看又好用
-
安装R 和Rstudio
安装R
安装Rstudio
同一个链接
超级注意事项
- 安装Rstudio时,必须安装路径中不能有任何中文!(例如自己的E:/生信星球/Rstudio,就安装失败了,最后改成E:/shengxin/Rstudio才成功的)
- 并且!R必须安装在名叫R的文件夹中,R文件夹必须和上面的Rstudio文件夹在同一个文件夹中!
-
R语言基本操作
只需要打开rstudio就可以用r语言编程干活啦!
各种设置
图片来源于果子学生信微信公众号
作图
- 散点plot
> plot(x=runif(50,min=0,max=50),y=runif(50,min = -3,max = 2),main = "insert",type="p",xlab = " ",ylab = "rnom(50)",xlim = c(0,50),ylim = c(-3,2))
- 箱式plot
boxplot(iris$Sepal.Length~iris$Species,col = c("lightblue","lightyellow","lightpink"))
常用代码
- 显示文件列表
> dir()
[1] "dayi.Rproj"
> list.files()
[1] "dayi.Rproj"
> list.files()
[1] "dayi.Rproj" "dayi.txt"
- 基本运算
> 5+2
[1] 7
> 6-4
[1] 2
> 2*8
[1] 16
> 8/5
[1] 1.6
> 5^3
[1] 125
> sqrt(8)
[1] 2.828427
> abs(-9)
[1] 9
> log2(8)
[1] 3
> log10(1000)
[1] 3
- 赋值
> a<-3
> b <- 1
> c <- 4
> u <- 5+6
- 删除赋值
> rm(b)
> rm(u,c)
> rm(list=ls()) #删除所有赋值
- 列出历史命令
在environment点history,或者输入history() - 清空控制台
ctrl+1
-
思维导图