R
-
ggsci:ggplot2科学期刊主题调色板
1.介绍 ggsci 提供一系列高质量的调色板,其灵感来自于科学期刊、数据可视化图书馆、科幻电影和电视节目中使用的颜色。.The color palettes in ggsci a…
-
利用R读取h5ad文件
安装包 install.packages(“remotes”)remotes::install_github(“mojaveazure/seur…
-
R:使用clusterProfiler进行DAVID GO富集分析
require(DOSE) require(clusterProfiler) data(geneList) gene = names(geneList)[abs(geneList)…
-
R:使用GOplot对GO分析结果作图
安装 # Installation of the latest released version install.packages(‘GOplot’) # Installation…
-
R:UniProt.ws包转换Accession,ENSEMBL,ENSEMBL_PROTEIN等
UniProt.ws提供了一个通往UniProt网络服务的选择查询接口。UniProt.ws是与Bioconductor的Uniprot网络服务互动的基础包。 与Annotatio…
-
R:计算数据框中每一行的标准偏差
RowSD = function(x) {sqrt(rowSums((x – rowMeans(x))^2)/(dim(x)[2] – 1))}
-
rconfig:在命令行管理 R 配置
Configuration management using files (JSON, YAML, separated text), JSON strings, and comma…
-
SCENIC:cisTarget databases数据库下载
List of databases for the cisTarget family of tools (e.g. RcisTarget, SCENIC/pySCENIC, and…
-
ggplot2绘图教程
直方图:geom_histogram 分组直方图的排列方式 position=”dodge” ggplot(small)+geom_histogram(aes(x=price, f…
-
R:使用R连接数据库处理数据
1.数据库连接 library(DBI) library(dplyr) library(dbplyr) library(odbc) con <- dbConnect(odbc…