I want to customize the colors which map the default_binary
variable in a geom_text
. Tried using scale_fill_manual
which works for a geom_bar
, but nothing happens. Any ideas? Added the link for how it looks like rn in the end.[1]
ggplot(DATA) +
geom_text(aes(x = recession_binary, y = percents, label = percents, color = default_binary)) +
scale_fill_manual("", values = c("Default" = rgb(232/255,74/255,39/255), "Paid in full" = rgb(19/255,41/255,75/255)))
Put simply, I just want to substitute the pink and green with the blue and orange denoted by the rgb above (doesn't matter the order): [1]: https://i.stack.imgur.com/Dxzsk.png
As suggested above by changing the
scale_color_manual
toscale_color_manual
you will get the desired result.geom_text
does not have afill
aesthetic.Created on 2020-10-12 by the reprex package (v0.3.0)