Hi, I'm trying to understand how to create a simple bar chart.
My data has 5 columns and 18 rows with the number of goals scored in each round by each team as follows:
Playing_Round,Team1,Team2,Team3,Team4,Team5
1,4,2,5,1,5
2,3,6,1,5,7
3,2,1,2,3,4
4,4,5,2,3,5
..
18,4,8,9,1,2
So I'd like to create a bar chart showing the number of goals each team scored for each round.
I'm guessing this is basic but I cannot figure out how to create it.
I'm happy if pointers are provided rather than answers but I'll take answers too
Thanks.