I am trying to add values together for each year in my dataset.
The dataframe looks like..
I'd like to add the values in NUMBER OF MOSQUITOES
column, collect them in the year to which it belongs.
For example,
2007 395
2008 154
2009 353
...
...
...
Which methods in pandas
or numpy
can I use?
Thank you for your help in advance