I am still new to r and was hoping for help on one of my plots. I am trying to add some color to this chart was looking for help doing so. I believe the image should be included and any tips would be helpful. I'm not looking for anything specific but any advice for how to color the bars or outline them, or even color the background. Thanks for any help!
CODE:
WorldCupMatches %>%
filter(Year == "2014", Home.Team.Name %in% top10teams_in_order) %>%
ggplot(aes(x = Home.Team.Name, y = Home.Team.Goals)) +
geom_col()