热点新闻
跟着Nature Communications学作图:R语言ggplot2平滑曲线折线图
2023-08-25 22:19  浏览:1086  搜索引擎搜索“富博农业网”
温馨提示:信息一旦丢失不一定找得到,请务必收藏信息以备急用!本站所有信息均是注册会员发布如遇到侵权请联系文章中的联系方式或客服删除!
联系我时,请说明是在富博农业网看到的信息,谢谢。
展会发布 展会网站大全 报名观展合作 软文发布

论文

A highly conserved core bacterial microbiota with nitrogen-fixation capacity inhabits the xylem sap in maize plants

https://www.nature.com/articles/s41467-022-31113-w

本地pdf s41467-022-31113-w.pdf

数据代码链接

https://github.com/PlantNutrition/Liyu

今天的推文我们重复一下论文中的Figure2e




image.png

关于平滑曲线,之前的推文有过介绍,可以参考

我们看下这个论文里是用什么代码来实现的

示例数据集部分截图




image.png

读取数据

top_genus <- read.delim("data/20220616/top_genus.txt", header=T, row.names=1, sep="\t", stringsAsFactors = FALSE, check.names = FALSE)

赋予因子水平

top_genus$Genus<-factor( top_genus$Genus, levels=c("Bacillus","Cronobacter", "Unclassified_Enterobacterales", "Klebsiella","Pantoea", "Pseudomonas","Rosenbergiella"), labels = c("Bacillus","Cronobacter", "Unclassified_Enterobacterales", "Klebsiella","Pantoea", "Pseudomonas","Rosenbergiella"))

准备配色

phy.cols <- c("#85BA8F", "#A3C8DC", "#349839","#EA5D2D", "#EABB77","#F09594","#2072A8")

普通折线图的代码

library(ggplot2) p=ggplot(data=top_genus, aes(x=Compartment,y=RA, group=Genus,colour=Genus))+ geom_point(size=3)+ labs(x="Compartments", y="Relative abundance (%)")+ geom_line()+ scale_x_discrete(limits=c("RS","RE","VE","SE","LE","P","BS"))+ scale_colour_manual(values=phy.cols) p


image.png

论文中提供的代码没有用BS的数据,所以会有警告信息




image.png

平滑曲线他用到的是 ggalt包中的 geom_xspline函数

library(ggalt) p2<-ggplot(data=top_genus,aes(x=Compartment,y=RA, group=Genus,colour=Genus))+ geom_point(size=3)+ labs(x="Compartments", y="Relative abundance (%)")+ geom_xspline(spline_shape = -0.5)+ scale_x_discrete(limits=c("RS","RE","VE","SE","LE","P"))+ scale_colour_manual(values=phy.cols) p2


image.png

拼图

mytheme = theme_bw() + theme(axis.text.x = element_text(size = 8),axis.text.y = element_text(size = 8))+ theme(axis.title.y= element_text(size=12))+theme(axis.title.x = element_text(size = 12))+ theme(legend.title=element_text(size=5),legend.text=element_text(size=5))+theme(legend.position = "bottom") library(patchwork) p+mytheme + p2 + mytheme + plot_layout(guides = "collect")+ plot_annotation(theme = theme(legend.position = "bottom"))


image.png

示例数据和代码可以到论文中去下载,或者直接在公众号后台留言20220616获取

欢迎大家关注我的公众号

小明的数据分析笔记本

小明的数据分析笔记本 公众号 主要分享:1、R语言和python做数据分析和数据可视化的简单小例子;2、园艺植物相关转录组学、基因组学、群体遗传学文献阅读笔记;3、生物信息学入门学习资料及自己的学习笔记!

发布人:9cb2****    IP:117.173.94.***     举报/删稿
展会推荐
让朕来说2句
评论
收藏
点赞
转发