Is there an easy way of creating a summed aggregate table in Python from columns in an existing table? I have only used SQL previously and this would be done with a code such as:
select AreaCode, Measure, sum(Value) as 'VALUE'
from Table
group by AreaCode, Measure
In my current table (sticking with the example above) I have hundreds of rows containing AreaCode, Measure and Value that i want to aggregate in a new table in Python