前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >跟着Nature学作图:R语言ggplot2簇状柱形图完整示例

跟着Nature学作图:R语言ggplot2簇状柱形图完整示例

作者头像
用户7010445
发布2023-01-06 19:06:59
5890
发布2023-01-06 19:06:59
举报

论文

A global reptile assessment highlights shared conservation needs of tetrapods

https://www.nature.com/articles/s41586-022-04664-7#Sec33

数据代码链接

https://github.com/j-marin/Global-reptile-assessment-

今天的推文学习一下推文中的Figure 3的簇状柱形图,没有找到论文中的作图代码,但是找到了原始数据集,有了原始数据集就可以自己写代码来做这个图

image.png

部分示例数据集

image.png

加载需要用到的R包

代码语言:javascript
复制
library(readxl)
library(ggplot2)
library(tidyverse)
library(patchwork)

Figure 3a

代码语言:javascript
复制
dat01<-read_excel("data/20220630/41586_2022_4664_MOESM4_ESM.xlsx",
                  sheet = "Fig 3a")

head(dat01)
dim(dat01)



dat01$Threat<-factor(dat01$Threat,
                     levels = dat01$Threat %>% unique())

ggplot(data=dat01,aes(x=Threat,y=n,fill=className))+
  geom_bar(stat="identity",position = "dodge")+
  theme_classic()+
  geom_vline(xintercept = 5.5,lty="dashed")+
  geom_vline(xintercept = 9.5,lty="dashed")+
  annotate(geom = "text",x=2.5,y=0.9,label="Habitat destruction")+
  annotate(geom = "text",x=7.5,y=0.9,label="Habitat change")+
  annotate(geom = "text",x=11,y=0.9,label="Other")+
  theme(legend.position = "bottom",
        axis.text.x = element_text(angle=60,hjust = 1,vjust = 1),
        legend.title = element_blank())+
  labs(x=NULL,y="Species threatened (%)")+
  scale_fill_manual(values = c("#936eaa","#401f51",
                               "#5f6798","#de6eaa"))+
  scale_y_continuous(labels = function(x){x*100}) -> p1

p1

image.png

Figure 3b

和Figure 3a是一样的,唯一的区别是配色不一样

代码语言:javascript
复制
dat02<-read_excel("data/20220630/41586_2022_4664_MOESM4_ESM.xlsx",
                  sheet = "Fig 3b")

head(dat02)
dim(dat02)

dat02$Threat<-factor(dat02$Threat,
                     levels = dat02$Threat %>% unique())

ggplot(data=dat02,aes(x=Threat,y=n,fill=className))+
  geom_bar(stat="identity",position = "dodge")+
  theme_classic()+
  geom_vline(xintercept = 5.5,lty="dashed")+
  geom_vline(xintercept = 9.5,lty="dashed")+
  annotate(geom = "text",x=2.5,y=0.9,label="Habitat destruction")+
  annotate(geom = "text",x=7.5,y=0.9,label="Habitat change")+
  annotate(geom = "text",x=11,y=0.9,label="Other")+
  theme(legend.position = "bottom",
        axis.text.x = element_text(angle=60,hjust = 1,vjust = 1),
        legend.title = element_blank())+
  labs(x=NULL,y="Species threatened (%)")+
  scale_fill_manual(values = c("#4868af","#e41f24",
                               "#edb91d","#973692"))+
  scale_y_continuous(labels = function(x){x*100}) -> p2

p2

image.png

最后是拼图

代码语言:javascript
复制
p1/p2 + plot_annotation(tag_levels = "a")

image.png

image.png

论文中的figure4也是簇状柱形图,感兴趣的可以自己试着复现一下

示例数据和代码可以自己到论文中获取

本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2022-07-07,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 小明的数据分析笔记本 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 论文
  • 数据代码链接
  • 部分示例数据集
  • 加载需要用到的R包
  • Figure 3a
  • Figure 3b
  • 最后是拼图
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档