Which code unstacks the data in the AgeGroup column by AgeGroup within Year?
1) mortality.unstack(['Year','Age_Group'])
2) mortality.unstack().set_index(['Age_Group','Year'])
3) mortality.set_index(['Age_Group','Year']).unstack()
4) mortality.set_index(['Year','Age_Group']).unstack()