R语言基础
准备工作
服务器登陆
- IP地址+端口号8787:xxxx.xxx.xx.xxx:8787
PC安装使用
- 已自学完成R与Rstudio安装
Rstudio
认识R与Rstudio
- R与Rstudio
R是一种编程语言,也是统计计算和绘图的环境,它汇集了许多函数,能够提供强大的功能。RStudio是免费提供的开源集成开发环境(IDE)。RStudio提供了一个具有很多功能的环境,使R更容易使用。——引自微信公众号生信星球
-
实操作图
plot(runif(50,max=0,min=100)、plot(rnorm(50,mean=20,sd=7))
boxplot(iris$Sepal.Length~iris$Species,col = c("lightblue","lightyellow","lightpink"))
设置字体大小
R语言基本操作
管理Rproject
-
显示路径
pwd()
setwd()#设置路径
-
显示文件列表
dir()
list.file
-
加减乘除与高阶运算
- +-*/
- 乘方、abs()、log、sqrt()、log10()
-
赋值
x<-12
-
删除变量
-
rm(x)、rm(list=ls())
- 列出历史命令
-history()
-
清空控制台
Ctrl+L