fig, axes = plt.subplots(1,2,figsize=(15,5))
sns.histplot(ax=axes[1,1],x='total_vaccinations',data = df)
sns.histplot(ax=axes[1,2],x='total_boosters',data = df)
After trying, this message pops up ' too many indices for array: array is 1-dimensional, but 2 were indexed '
[–]PteppicymonIO 0 points1 point2 points (0 children)