如何在 R 中的径向图中正确对齐文本

问题描述 投票:0回答:1

我有以下数据:

data_melted <- structure(list(variable = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 
1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L), levels = c("SJLIFE", "CCSS"), class = "factor"), 
    SN_types = structure(c(1L, 2L, 3L, 4L, 5L, 6L, 7L, 1L, 2L, 
    3L, 4L, 5L, 6L, 7L), levels = c("Any SN", "SMN", "NMSC", 
    "Breast cancer", "Thyroid cancer", "Meningioma", "Sarcoma"
    ), class = "factor"), AF_by = c("Combined", "Combined", "Combined", 
    "Combined", "Combined", "Combined", "Combined", "Combined", 
    "Combined", "Combined", "Combined", "Combined", "Combined", 
    "Combined"), value = c(0.536, 0.467, 0.688, 0.704, 0.866, 
    0.423, 0.316, 0.435, 0.323, 0.577, 0.743, 0.664, 0.444, 0.362
    ), new_value = c(54, 47, 69, 70, 87, 42, 32, 44, 32, 58, 
    74, 66, 44, 36)), row.names = c(6L, 12L, 18L, 24L, 30L, 36L, 
42L, 48L, 54L, 60L, 66L, 72L, 78L, 84L), class = "data.frame")

我正在使用这段代码来绘制情节。但是,我很难在栏周围正确对齐文本。我希望文本位于每个条形的顶部,与每个条形成 90 度,保持径向图的角度位置。我该怎么做?

angle_increment.AF <- 360 / 14
angle_increment.SN_type <- 360 / 7    
ggplot(data_melted, aes(x = SN_types, y = new_value, fill = variable, label = new_value)) +
      geom_bar(stat = "identity", position = position_dodge(width = 0.9)) +
      geom_vline(xintercept = seq(1.5, 19.5, by = 3), color = "black", linetype = "dashed") + # If you want to include a vertical line
      geom_hline(yintercept = 100) +
      geom_text(aes(angle = 0 + (angle_increment.AF * (as.numeric(as.factor(SN_types)) - 1))),  # Adjust angle of text labels
                position = position_dodge(width = 1), vjust = 0.9, size = 5, color = "black") +  # Adjust label position and size
      scale_fill_manual(values = c(darker_sjlife, darker_ccss), labels = c("SJLIFE", "CCSS")) +  # Specify colors for SJLIFE and CCSS bars
      scale_y_continuous(breaks = seq(0, 100, by = 10)) +  # Custom grid lines from 0 to 1 by 0.25
      coord_polar() +
      theme_minimal() +
      theme(panel.grid.major.y = element_line(color = "gray", linetype = "dotted"),  # Adjust major grid lines
            panel.grid.minor = element_blank(),  # Remove minor grid lines
            axis.line = element_blank(),   # Remove axis lines
            axis.text.x = element_text(hjust = 0.5, angle = angle_increment, color = "black"),  # Center SN type labels within grid
            axis.text = element_text(size = 12, color = "black"),  # Adjust axis text size
            axis.title = element_text(size = 14, color = "black"),  # Adjust axis title size
            legend.title = element_text(size = 14, color = "black"),  # Adjust legend title size
            legend.text = element_text(size = 12, color = "black")) +  # Adjust legend text size
      labs(title = "",
           x = NULL, y = "(%)",
           fill = "Cohort")
r ggplot2
1个回答
0
投票

你让这件事变得比你需要的更加困难。使用 geomtextpath 包中的

coord_curvedpolar
可以很好地排列径向标签。您还可以使用
geom_textpath
代替
geom_text
,这样您就不需要计算标签的角度。

library(geomtextpath)

ggplot(data_melted, aes(x = SN_types, y = new_value, 
                        fill = variable, label = new_value)) +
  geom_col(position = position_dodge(width = 0.9)) +
  geom_vline(xintercept = seq(1.5, 19.5, by = 3), linetype = "dashed") +
  geom_textpath(position = position_dodge(width = 1), vjust = 1, size = 5) + 
  scale_fill_manual(values = c('deepskyblue', 'orange'), 
                    labels = c("SJLIFE", "CCSS")) + 
  scale_y_continuous(breaks = seq(0, 100, by = 10)) + 
  coord_curvedpolar() +
  theme_minimal() +
  theme(panel.grid.major.y = element_line(color = "gray", linetype = "dotted"), 
        panel.grid.minor = element_blank(),
        axis.line = element_blank(),  
        axis.text = element_text(size = 12, color = "black"), 
        axis.title = element_text(size = 14, color = "black"), 
        legend.title = element_text(size = 14, color = "black"), 
        legend.text = element_text(size = 12, color = "black")) + 
  labs(x = NULL, y = "(%)", fill = "Cohort")

© www.soinside.com 2019 - 2024. All rights reserved.