学习R包
options("repos" = c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/")) options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/")
install.packages("dplyr")
library(dplyr)
引用于生信星球学习小组
dplyr五个基本函数
mutate()#新增列
select()
filter()
arrange()
summarise
dplyr的两个实用技能%>%
(cmd/ctr shift M)
count()
dplyr处理关系数据inner_join()
left_join()
full_join
semi_join
anti_join
bind_rows()#两个表格有相同的列数
bind_cols()#两个表格有相同的行数