R
-
SCENIC:cisTarget databases数据库下载
List of databases for the cisTarget family of tools (e.g. RcisTarget, SCENIC/pySCENIC, and cisTopic). To choose the data…
-
ggplot2绘图教程
直方图:geom_histogram 分组直方图的排列方式 position=”dodge” ggplot(small)+geom_histogram(aes(x=price, fill=cut), position=”dodge”) ht…
-
R:使用R连接数据库处理数据
1.数据库连接 library(DBI) library(dplyr) library(dbplyr) library(odbc) con <- dbConnect(odbc::odbc(), “Oracle DB”) 2.使用DBI…
-
在R中安装Git/Github
1.查看是否安装Git命令: 执行安装命令: which git ## /usr/bin/git 查看 git –version 版本: git –version ## git version 2.35.1 2.Windows系统 安装…
-
2022年1月 精选最新R包
Agriculture ALUES v0.2.0: Provides functions for fuzzy modeling to evaluate land suitability for different crops product…
-
空间转录组学分析包-Spatial transcriptomics Packages
Merfishtools – [Python] – MERFISHtools implement a Bayesian framework for accurately predicting gene or tran…
-
R:字符大小写转换
R:字符大小写转换 >x = “CAGGGT” #定义字符串变量x >tolower(x) [1] “caggt” #将x中的字符全部转换为小写字母 >y = tolower…
-
R:Bioconductor设置国内镜像
Bioconductor安装包出现无法打开url https://bioconductor.org/install/,可以通过修改国内镜像解决,代码如下: 运行安装命令 BiocManager::install(“DOSE…
-
had non-zero exit status
解决方案1:install.packages(‘*package_name’, dependencies = TRUE)
-
edgeR:RNAseq差异基因比较
Empirical analysis of digital gene expression data in R 安装: source(“http://bioconductor.org/biocLite.R”)bioc…