简体   繁体   中英

Conditionally color bars in ggplot

I am trying to build a stacked chart using three variables but I am having trouble with representing the data.

Here is what the data looks like

local manager bins sum by bins
yes (0.01,0.09] 109
no (0.01,0.09] 109
yes (0.01,0.09] 109
yes (0.01,0.09] 109
no (0.89,0.99] 56
no (0.89,0.99] 56
no (0.99,1] 45
yes (0.69,0.79] 33
yes (0.69,0.79] 33

I want the bars to have the height of y-axis and be colored if local manager is yes/no/mixed, but I don't really know how to do that. For example the color of (0.01,0.09] bar would be orange since it has both yes and no. Thanks for the help!

Here is a solution that generates the desired plot. The main trick is to code the "local manager" column into the desired categories: "yes", "no", "mixed" using summarise . In this example df is your dataframe, except I shortened the name of "sum by bins" column to simply "sum".

library(dplyr)
library(ggplot2)

df |>
  # Group by bins
  group_by(bins) |>
  # Summarise to get yes, no, mixed classes
  summarise(n = length(unique(localmanager)),
            class = ifelse(n == 1, unique(localmanager), "mixed"),
            y = unique(sum)) |>
  # ggplot
  ggplot(aes(x = bins, 
             y = y,
             fill = class)) +
  # columns plot
  geom_col() +
  # Change fill colors according to class values
  scale_fill_manual(values = c("mixed" = "orange",
                               "no" = "firebrick3",
                               "yes" = "forestgreen"))

阴谋

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM