I am doing some data analysis for a dataset and this is the variables that i want to plot.
neighbourhoods_seniors_no_show = raw_df[raw_df['No_show'] == 1].groupby(['Neighbourhood', 'Age_group']).count()['Gender']
resulting in this df group
Neighbourhood Age_group
AEROPORTO Adult 1
ANDORINHAS Adult 269
Infant 84
Senior 75
Teenage 62
...
UNIVERSITÁRIO Teenage 2
VILA RUBIM Adult 71
Infant 20
Senior 33
Teenage 12
Name: Gender, Length: 309, dtype: int64
I want to plot a graph showing the Senior Age group with maximum No-shows at each location?
Any idea how do i go on about this?