生信星球培训第134期

学习小组Day4笔记--hasey

2022-04-20  本文已影响0人  haseyy

R语言基础

准备工作

下载R和Rstudio

给自己一个全新的R语言环境

file.edit('~/.Renviron')#新建空白文本
#在这个文本中输入
R_LIBS_USER="D:/Rlib"#R包装到这个目录
#关闭文件 保存
file.edit('~/.Rprofile')
options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/")
#bioconductor

options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/",
 CRANextra = "http://www.stats.ox.ac.uk/pub/RWin"))
#cran
#以下都不能运行
#把这个文件下载到本地并打开https://bioconductor.org/biocLite.R 在开头加上这 两行???
#把这个biocLite.R文件复制到R当前的工作环境下面
source("biocLite.R")
BiocInstaller::biocLite()

source causes R to accept its input from the named file or URL or connection or expressions directly. Input is read and [parse] from that file until the end of the file is reached, then the parsed expressions are evaluated sequentially in the chosen environment.

认识R R STUDIO

plot(rnorm(50)) #必应查查plot和runif什么意思

设置字体大小

R语言基本操作

1.用Rproject管理工作目录
https://mp.weixin.qq.com/s/G-LXN9P2HVLv9v0cvyFJMA
设置工作目录:setwd()
查看工作目录:getwd()

2.显示文件列表
dir()
list.files()
👆---重复上一步

3.加减乘除

4.赋值 <- alt-
x<- 1+2 意思是把1+2的运算结果赋值给x

5.删除变量

6.列出历史命令
history()

7.清空控制台
ctrl+l

上一篇 下一篇

猜你喜欢

热点阅读