Does anyone knows how to define a custom palette to be used in ggplot when geom="bar".
I have an array of colors I would like to use:
> rhg_cols
[1] "#771C19" "#AA3929" "#E25033" "#F27314" "#F8A31B" "#E2C59F" "#B6C5CC"
[8] "#8E9CA3" "#556670" "#000000"
But When I try to pass it to nothing happened
ggplot(mydata, aes(factor(phone_partner_products)), color=rhg_cols) + geom_bar()