Construct 4 seaborn bar graphs from these data: 1) df1['city'].value_counts() 2) df2['hotel'].value_counts() 3) df2['date'].value_counts() 4) df2['rating'].value_counts()
def bar_plots(df): for col in df.columns: df[col].value_counts().plot.bar() return