R

  • SCENIC:cisTarget databases数据库下载

    List of databases for the cisTarget family of tools (e.g. RcisTarget, SCENIC/pySCENIC, and cisTopic). To choose the data…

    R 03/21/2022
    831
  • ggplot2绘图教程

    直方图:geom_histogram 分组直方图的排列方式 position=”dodge” ggplot(small)+geom_histogram(aes(x=price, fill=cut), position=”dodge”) ht…

    03/07/2022
    314
  • R:使用R连接数据库处理数据

    1.数据库连接 library(DBI) library(dplyr) library(dbplyr) library(odbc) con <- dbConnect(odbc::odbc(), “Oracle DB”) 2.使用DBI…

    03/06/2022
    284
  • 在R中安装Git/Github

    1.查看是否安装Git命令: 执行安装命令: which git ## /usr/bin/git 查看 git –version 版本: git –version ## git version 2.35.1 2.Windows系统 安装…

    R 03/05/2022
    324
  • 2022年1月 精选最新R包

    Agriculture ALUES v0.2.0: Provides functions for fuzzy modeling to evaluate land suitability for different crops product…

    03/05/2022
    337
  • 空间转录组学分析包-Spatial transcriptomics Packages

    Merfishtools – [Python] – MERFISHtools implement a Bayesian framework for accurately predicting gene or tran…

    R 03/02/2022
    363
  • R:字符大小写转换

    R:字符大小写转换 >x = “CAGGGT” #定义字符串变量x >tolower(x) [1] “caggt” #将x中的字符全部转换为小写字母 >y = tolower…

    R 08/10/2021
    256
  • R:Bioconductor设置国内镜像

    Bioconductor安装包出现无法打开url https://bioconductor.org/install/,可以通过修改国内镜像解决,代码如下: 运行安装命令 BiocManager::install(“DOSE&#8…

    01/09/2021
    644
  • had non-zero exit status

    解决方案1:install.packages(‘*package_name’, dependencies = TRUE)

    Python 11/07/2020
    302
  • edgeR:RNAseq差异基因比较

    Empirical analysis of digital gene expression data in R 安装: source(“http://bioconductor.org/biocLite.R”)bioc…

    08/14/2020
    295