R

  • R:计算数据框中每一行的标准偏差

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

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

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

    R 04/01/2022
    613
  • 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
    2.0K
  • ggplot2绘图教程

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

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

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

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

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

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

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

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

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

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

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

    01/09/2021
    971