How can I add titles to each subplot here?
fig, axs = plt.subplots(ncols=4, nrows=2, figsize=(16,8))
for city, nrow in zip(['City1', 'City1'], [0, 1]):
df = data[(data.city==city)&(data.sdate.dt.year==2021)]
for col, ncol in zip(['parameterX', 'parameterY', 'parameterZ', 'parameterH'], [0,1, 2,3]):
axs[nrow, ncol].hist(df[col], bins=50)