GGplot 对象不会根据数据框中指定的颜色对条形进行着色

Posted

技术标签:

【中文标题】GGplot 对象不会根据数据框中指定的颜色对条形进行着色【英文标题】:GGplot object does not color bars according to color specified in the dataframe 【发布时间】:2021-08-19 04:21:15 【问题描述】:

我有下面的数据框:

Cum<-structure(list(Age.group = c("00-04", "00-04", "05-14", "05-14", 
                                  "15-24", "15-24", "25-49", "25-49", "50-64", "50-64", "65-79", 
                                  "65-79", "80+", "80+"), Gender = c("Female", "Male", "Female", 
                                                                     "Male", "Female", "Male", "Female", "Male", "Female", "Male", 
                                                                     "Female", "Male", "Female", "Male"), Cases = c(64578, 70518, 
                                                                                                                    187568, 197015, 414405, 388138, 1342394, 1206168, 792180, 742744, 
                                                                                                                    400232, 414613, 282268, 198026), lab = c("64,578", "70,518", 
                                                                                                                                                             "187,568", "197,015", "414,405", "388,138", "1,342,394", "1,206,168", 
                                                                                                                                                             "792,180", "742,744", "400,232", "414,613", "282,268", "198,026"
                                                                                                                    ), Age.group.Sum = c(135096, 135096, 384583, 384583, 802543, 
                                                                                                                                         802543, 2548562, 2548562, 1534924, 1534924, 814845, 814845, 480294, 
                                                                                                                                         480294), lab2 = c("135,096", "135,096", "384,583", "384,583", 
                                                                                                                                                           "802,543", "802,543", "2,548,562", "2,548,562", "1,534,924", 
                                                                                                                                                           "1,534,924", "814,845", "814,845", "480,294", "480,294"), color = c("#4285f4", 
                                                                                                                                                                                                                               "#4285f4", "#90a9e0", "#90a9e0", "#dd9e5f", "#dd9e5f", "#b45f06", 
                                                                                                                                                                                                                               "#b45f06", "#b45f06", "#b45f06", "#dd9e5f", "#dd9e5f", "#aebbd6", 
                                                                                                                                                                                                                               "#90a9e0"), Range = c("LESS THAN 74.5K", "LESS THAN 74.5K", "148.9K - 223.4K", 
                                                                                                                                                                                                                                                     "148.9K - 223.4K", "372.3K - 446.7K", "372.3K - 446.7K", "MORE THAN 670.1K", 
                                                                                                                                                                                                                                                     "MORE THAN 670.1K", "MORE THAN 670.1K", "MORE THAN 670.1K", "372.3K - 446.7K", 
                                                                                                                                                                                                                                                     "372.3K - 446.7K", "223.4K - 297.8K", "148.9K - 223.4K")), class = "data.frame", row.names = c(NA, 
                                                                                                                                                                                                                                                                                                                                                    -14L))

如您所见,虽然数据集在color 列中具有正确的color 值,但绘图不正确,因为例如LESS THAN 74.5K 应该用#4285f4 着色,而是用#aebbd6 着色

names(mycols) <- mycols
ylab <- c(0.5,1,1.5,2,2.5)
ggplot_obj <- ggplot(data = Cum, aes(x = `Age.group`, y = Cases, group = Gender,fill = Range)) +
  geom_bar(aes(
    # Define a text object here that can be use for reference by ggplot_ly
    # thought ggplot will throw a warning
    text = paste("<b>Gender:</b>", Gender, "<br><b>Age:</b>", `Age.group` ,
                 "<br><b>Cases:</b>", lab, "<br><b>Total cases in age group:</b>",
                 lab2)), 
    position = "dodge", stat = "identity") +
  geom_text(aes(y = Cases + 10000, label = Gender), vjust = 1,
            position = position_dodge(width=0.9),size=2) +
  scale_fill_manual(values = Cum$color) +
  coord_cartesian(ylim = c(0, max(Cum$Cases)*1.1), expand = FALSE) +
  theme_bw()+ theme(
    # remove the vertical grid lines
    panel.grid.major.x = element_blank(),
    panel.border = element_blank(), axis.line.x = element_line()
  ) +
  scale_y_continuous(labels = unit_format(unit = "M", scale = 1e-6))+
  xlab("Age group") 

#> Warning: Ignoring unknown aesthetics: text
# running ggplotly with tooltip option reference to the text defined in ggplot object
ggplotly(ggplot_obj, tooltip="text") %>%
  config(modeBarButtonsToRemove = c('toImage', "zoom2d", "toggleSpikelines",
                                    "hoverClosestCartesian", "hoverCompareCartesian", "drawline", "autoScale2d",
                                    "resetScale2d", "zoomIn2d", "zoomOut2d", "pan2d", 'select2d', 'lasso2d')) %>%
  config(displaylogo = FALSE)

【问题讨论】:

【参考方案1】:

指定一个命名向量

lbls <- setNames(unique(Cum$color), unique(Cum$Range))
                                                                                                    
                                                                                                                                                                                                                                                                                                                                                
ggplot_obj <- ggplot(data = Cum, aes(x = `Age.group`, y = Cases, group = Gender,fill = Range)) +
  geom_bar(aes(
   
    text = paste("<b>Gender:</b>", Gender, "<br><b>Age:</b>", `Age.group` ,
                 "<br><b>Cases:</b>", lab, "<br><b>Total cases in age group:</b>",
                 lab2)), 
    position = "dodge", stat = "identity") +
  geom_text(aes(y = Cases + 10000, label = Gender), vjust = 1,
            position = position_dodge(width=0.9),size=2) +
  scale_fill_manual(values = lbls) +
  coord_cartesian(ylim = c(0, max(Cum$Cases)*1.1), expand = FALSE) +
  theme_bw()+ theme(
    # remove the vertical grid lines
    panel.grid.major.x = element_blank(),
    panel.border = element_blank(), axis.line.x = element_line()
  ) +
  scale_y_continuous(labels = unit_format(unit = "M", scale = 1e-6))+
  xlab("Age group") 

-测试

为了测试使用了不同的颜色以使其更明显

lbls
 #LESS THAN 74.5K  148.9K - 223.4K  372.3K - 446.7K MORE THAN 670.1K  223.4K - 297.8K 
 #       "yellow"            "red"           "blue"          "green"         "orange" 

查看ggplot_obj

【讨论】:

谢谢,也许你可以帮忙***.com/questions/67781355/…

以上是关于GGplot 对象不会根据数据框中指定的颜色对条形进行着色的主要内容,如果未能解决你的问题,请参考以下文章

根据ggplot中的两个条件对条形图进行排序

R ggplot 直方图。如何根据另一个变量更改条形的颜色?

如何设置 ggplot2 填充颜色以聚合统计信息?

JS 删除数组中指定的对象或者删除数组中某一项

JS 删除数组中指定的对象或者删除数组中某一项

用均值条形图及其标准差 ggplot2 总结数据框