生信星球Day4
R基本操作
- dir() 查看目录
- list.files() 查看目录
- 数学运算:abs() 绝对值,sqr() 开方
-
赋值 <- 可按Alt和减号快速输入
- Ctrl 1 清空控制台
> x <- 1-2
> x
[1] -1
> plot(rnorm(50)) #必应查查plot和runif什么意思
> boxplot(iris$Sepal.Length~iris$Species,col = c("lightblue","lightyellow","lightpink"))
> a<-3
> b <- 1
> c <- 4
> u <- 5+6
> rm(b)
> rm(u,c)
> rm(list = ls())#清空所有变量
> a<-3
> b <- 1
> c <- 4
> u <- 5+6
> rm(b)
> history()