I have this small dataset
map red_team blue_team
1 7 8
2 21 32
3 11 22
4 10 8
And I am trying to create a multiplot where each individual plot one represents one of the maps (1,2,3 and 4), and the content is two bars, one for red_team and another for blue_team on the X axis and the score on the Y axis.
This what I currently have.
ggplot(winners_and_score, aes(red_team)) + geom_bar() + facet_wrap(~ map)
I'm having issue trying to display the score for both teams.

Thanks.

reshape2::melt(winners_and_score, id = "map")will give you a long format data.frame making this easier