生信星球培训第134期

学习小组Day6笔记--cl

2022-04-22  本文已影响0人  陈泠

学习R包

思维导图

镜像设置

file.edit('~/.Rprofile')
options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/") 
options("repos" = c(CRAN="[https://mirrors.tuna.tsinghua.edu.cn/CRAN/](https://mirrors.tuna.tsinghua.edu.cn/CRAN/)")) 

安装

install.packages(“包”)
BiocManager::install(“包”)

 install.packages(“ggplot2”)
 BiocManager::install(“clusterProfiler”)

加载

library(包)
require(包)

library(“ggplot2”)
require(“ggplot2”)

dplyr五个基础函数

mutate(),新增列

(1)按列号筛选

  select(test,1)
  select(test,c(1,5))
select(),按列号筛选

(2)按列名筛选

select(test,Sepal.Length)
select(test, Petal.Length, Petal.Width)
select(),按列名筛选 filter(),筛选行
arrange(test, Sepal.Length)#默认从小到大排序
arrange(test, desc(Sepal.Length))#用desc从大到小
arrange(),按列排序
summarise(test, mean(Sepal.Length), sd(Sepal.Length))# 计算Sepal.Length的平均值和标准差
summarise(),汇总

dplyr两个实用技能

test %>% 
  group_by(Species) %>% 
  summarise(mean(Sepal.Length), sd(Sepal.Length))  
管道操作
count(test,Species)
count,统计某列的unique值

dplyr处理关系数据

test1 <- data.frame(x = c('b','e','f','x'), 
                    z = c("A","B","C",'D'),
                    stringsAsFactors = F)
test1
test1
test2 <- data.frame(x = c('a','b','c','d','e','f'), 
                    y = c(1,2,3,4,5,6),
                    stringsAsFactors = F)
test2
test2
inner_join(test1, test2, by = "x")
內连inner_join,取交集
left_join(test1, test2, by = 'x')
left_join(test2, test1, by = 'x')
內连inner_join,取交集
full_join( test1, test2, by = 'x')
全连full_join
semi_join(x = test1, y = test2, by = 'x')
半连接semi_join,返回能够与y表匹配的x表所有记录
anti_join(x = test2, y = test1, by = 'x')
反连接anti_join
test1 <- data.frame(x = c(1,2,3,4), y = c(10,20,30,40))
test1
test1
test2 <- data.frame(x = c(5,6), y = c(50,60))
test2
test2
test3 <- data.frame(z = c(100,200,300,400))
test3
test3

bind_rows()

bind_rows(test1, test2)
bind_rows()

bind_cols()

bind_cols(test1, test3)
bind_cols()
上一篇 下一篇

猜你喜欢

热点阅读