After I run this code
ggplot(bar, aes(x = Provinces, y = Male, fill = "male")) +
geom_bar(stat = "identity", position = "dodge") +
geom_bar(aes(x = Provinces, y = Female), stat = "identity", position = "dodge", fill = "red") +
ggtitle("Presidential Election Results by Gender and City") +
scale_fill_manual(values = c("male" = "blue", "female" = "red"))
This is what am receiving
Error: Unknown colour name: female