
R
小七毛
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
如何使用R包进行KEGG和GO分析
先贴上代码,后面有空的时候来解释:source("http://bioconductor.org/biocLite.R");biocLite("clusterProfiler")biocLite("clusterProfiler")getwd()setwd("E:/my project/R_project")library(org.Hs.eg.db)data(geneList, p...原创 2018-08-16 19:21:37 · 42564 阅读 · 5 评论 -
如何使用R绘制简单的频率直方图?
v<-read.table("aa.txt") 读取文件中的内容 hist(v[,1],xlab = "Weight",col = "green",border = "red", ylim = c(0,20),breaks=200) 绘制频率直方图v[,1] 查看文件中的内容*文件格式内容如下: ...原创 2018-08-30 18:53:06 · 10484 阅读 · 1 评论 -
clusterProfiler安装或者升级中出现的版本问题
1、之前按照官网的流程,如下,安装了该包并载入DOSE之后一直提示装不上enrich plot:## try http:// if https:// URLs are not supportedsource("https://bioconductor.org/biocLite.R")biocLite("clusterProfiler")2、3、该问题的意思是R 3.4.3版本的不...原创 2018-09-27 21:40:17 · 10147 阅读 · 0 评论