Hi i have been trying to figure out how do i plot my data frame into the graphs. My dataframe looks like this .
Country | exports 2015 | exports 2016 | Gdp 2015 | GDP 2016|
A | 500 | 600 | 34324 | 23525 |
B | 435 | 335 | 3243 | 2324 |
C | 222 | 324 | 23423 | 1233 |
D | 7756 | 9000 | 32424 | 65545 |
Basically i want to compare the mean for all the columns and plot them on a graph with 1 x axis as the years and 2 y axis as the exports and GDP. I can only do for 1 year. Basically im trying to get
| |
| |
| |
Mean | |
Exports | | Mean GDP
| |
| |
|____________________________________|
2015 2016
Do i need to somehow convert the data into a mean when plotting the graph or do i do another column? Any advice would be great thanks :)