美文网首页生信星球培训第八十五期
学习小组Day4笔记--Mengshangsen

学习小组Day4笔记--Mengshangsen

作者: 谁家东风花正好_何处西山日渐薄 | 来源:发表于2020-10-20 00:29 被阅读0次

D4-The basic knowledge of R programming language.png

下载R语言 https://mirrors.tuna.tsinghua.edu.cn/CRAN/
下载Rstudio https://www.rstudio.com/products/rstudio/download/
R-project https://mp.weixin.qq.com/s/G-LXN9P2HVLv9v0cvyFJMA


dir()
list.files()
+-*/
x<- 1+2
rm(b)#清除一个变量
rm(u,c) #清除多个变量
rm(list = ls())#清空所有变量
history()#在history里双击命令就会重现于控制台大于号后面,可以修改后运行
plot(rnorm(50))
boxplot(iris$Sepal.Length~iris$Species,col = c("lightblue","lightyellow","lightpink"))

两个函数相关知识
plot
boxplot

相关文章

网友评论

    本文标题:学习小组Day4笔记--Mengshangsen

    本文链接:https://www.haomeiwen.com/subject/msrrmktx.html