R

  • R:UniProt.ws包转换Accession,ENSEMBL,ENSEMBL_PROTEIN等

    UniProt.ws提供了一个通往UniProt网络服务的选择查询接口。UniProt.ws是与Bioconductor的Uniprot网络服务互动的基础包。 与AnnotationDb对象允许对许多其他注释包进行选择一样,UniProt.…

    R 04/28/2022
    202
  • R:计算数据框中每一行的标准偏差

    RowSD = function(x) {sqrt(rowSums((x – rowMeans(x))^2)/(dim(x)[2] – 1))}

    R 04/21/2022
    172
  • rconfig:在命令行管理 R 配置

    Configuration management using files (JSON, YAML, separated text), JSON strings, and command line arguments. Command lin…

    R 04/01/2022
    182
  • 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
    439
  • ggplot2绘图教程

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

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

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

    03/06/2022
    79
  • 在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
    148
  • 2022年1月 精选最新R包

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

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

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

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

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

    R 08/10/2021
    99