生信星球培训第107期

生信星球Day4

2021-04-29  本文已影响0人  王充

生信星球Day4

R基本操作

> 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()
历史记录中,双击某一行可再次执行该行
上一篇下一篇

猜你喜欢

热点阅读