Hello Guys
From a csv file with 116,000 records, it contains information on students who have graduated from the university from 2007 to 2021
I have made the sum of graduates per year, with the following parameter,
dataframe.pivot_table(index=‘YEAR’,values=‘TOTAL_STUDENT’,aggfunc=‘sum’)
YEAR TOTAL_GRADUATED
TIT_2007 95297
TIT_2008 110299
TIT_2009 122903
TIT_2010 118590
TIT_2011 136580
TIT_2012 155424
TIT_2013 181420
TIT_2014 196551
TIT_2015 215265
TIT_2016 228892
TIT_2017 241787
TIT_2018 249225
TIT_2019 245270
TIT_2020 201723
TIT_2021 276314
I have been asked to graph the result as part of the task I am doing, but I have not been able to do it.
Therefore, I ask for your kind help if someone can tell me how I can make the line graph with the results.
I have made several examples, but I have not been able to do it
Thank you