I'm trying to find out why I'm not able to change the color of my bars. Hope you can help, I'm kinda new to this.
ggplot2(data, aes(x = data$Crop, y = data$"2018"))+
geom_bar(color="black", fill="red") +
theme(axis.text.x = element_text(angle = 60, vjust = 1, hjust = 1)) +
main="Production value per crop in 2018" +
ylab("Production value in 2018")+
xlab("Crop")+
Hope to hear from you.