I'm producing a stacked bar plot with purple and yellow but the two colours won't show up. Here is my code:
ggplot(df_group, aes(x = COLOUR, y =COUNT, fill = GROUP,label=GROUP)) +
geom_bar(position="stack", stat = "identity") +
scale_fill_manual("Flower Colour", values = c("Purple" = "mediumpurple", "Yellow" = "Gold")) +
labs(x='Group', y="Visits")
What do I need to change?