前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >[GBD数据库挖掘] 13.ggplot2绘制风险因素图

[GBD数据库挖掘] 13.ggplot2绘制风险因素图

作者头像
R语言数据分析指南
发布2023-11-23 14:53:52
3870
发布2023-11-23 14:53:52
举报
文章被收录于专栏:R语言数据分析指南

加载R包

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

导入数据

代码语言:javascript
复制
data <- read_tsv("data.tsv")

数据清洗

代码语言:javascript
复制
df <- data %>% group_by(age_group, predicted_risk) %>% 
  mutate(pred_risk_med = median(predicted_risk_value)) %>% 
  ungroup()

数据可视化

代码语言:javascript
复制
ggplot(df) +
  geom_bar(aes(sex, 1, fill = predicted_risk_value), position = "fill", 
           stat = "identity", size = 1, color = "grey99") +
  geom_text(aes(sex, 1, label = personId), position = "fill",
            stat = "identity", hjust = 1.2,color = "grey99", size=2.8, 
            alpha = 0.8) +
  coord_flip() +
  scale_y_continuous(position = "right") +
  scale_fill_gradientn(colours = rev(RColorBrewer::brewer.pal(4,"RdBu")))+
  facet_grid(rows = vars(str_wrap(predicted_risk, 25)), cols = vars(age_group)) +
  labs(y = "Age group",fill = "Risk") +
  theme_minimal() +
  theme(
    legend.key.height = unit(0.5, "line"),
    legend.key.width = unit(2, "lines"),
    legend.title = element_text(vjust = 1),
    plot.background = element_rect(fill = "grey99",color = NA),
    axis.title.x = element_text(face = "bold"),
    axis.title.y = element_blank(),
    axis.text.x = element_blank(),
    axis.text.y = element_text(color = c("#407075", "#AF559B"),size = 10),
    panel.grid = element_blank(),
    strip.text.x = element_text(face = "bold",size = 10),
    strip.text.y = element_text(angle = 0, hjust = 0,face = "bold",size = 8),
    panel.margin = unit(0, "lines"),
    plot.margin = margin(10,10,10,10))+
    guides(fill=guide_colorbar(direction="vertical",reverse=F,
                               barwidth=unit(.5,"cm"),
                               barheight=unit(16,"cm")))
本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2023-11-21,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 R语言数据分析指南 微信公众号,前往查看

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

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

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 加载R包
  • 导入数据
  • 数据清洗
  • 数据可视化
相关产品与服务
数据库
云数据库为企业提供了完善的关系型数据库、非关系型数据库、分析型数据库和数据库生态工具。您可以通过产品选择和组合搭建,轻松实现高可靠、高可用性、高性能等数据库需求。云数据库服务也可大幅减少您的运维工作量,更专注于业务发展,让企业一站式享受数据上云及分布式架构的技术红利!
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档