I have a dataset of video games which has sales across 4 different regions JAPAN_Sales,NA_Sales,EUR_Sales,IND_Sales and Global_Sales. Sales are from the Year 1980 to 2016. I want to visualize the sum of Global_Sales from the Year 2000 to 2010. I am not able to do. I am a beginner in Pandas. I have tried the below code but stuck after that:
vg.groupby('Year').sum()
The column names are :
'Rank',
'Name',
'Platform',
'Year',
'Genre',
'Publisher',
'NA_Sales',
'EUR_Sales',
'JAP_Sales',
'IND_Sales',
'Global_Sales']