I have created a catplot for number of people killed/injured using the catplot function. However, since the scales of the 2 are very different the bars in second graphs are very small and cannot be read. Anyway I can re-scale y-axis of the second chart? And add data labels to both charts?
grid = sns.catplot(x = 'borough',
y = 'Injured/Killed',
hue = 'Commuter Type',
col = 'Injury Type',
data = tabular_breakdown,
kind = 'bar')