美文网首页
一行代码解决GO富集分析柱形图

一行代码解决GO富集分析柱形图

作者: vvv97 | 来源:发表于2019-12-31 17:05 被阅读0次

    David Kobas 富集分析的结果怎么转变为发表级别的图片?
    示例数据直接从网站导出整理成如下这种格式读入R


    image.png
    dat = read.csv(choose.files(),header = T)#我保存的数据为csv格式,如果txt格式用read.table()
    library(ggplot2)#没有自己安装 install.package("ggplot2")
    ggplot(dat,aes(y=dat$Count,x=dat$Term,fill=dat$Category)) + geom_bar(stat="identity",position = "dodge") +facet_grid(dat$Category~.,scales = "free",space = "free") + coord_flip() + theme_bw()
    
    image.png

    相关文章

      网友评论

          本文标题:一行代码解决GO富集分析柱形图

          本文链接:https://www.haomeiwen.com/subject/nofioctx.html