Ordering categories
Not all categories are created equal. In the hotel review dataset, reviews
, hotel owners know that most of their customers are from North America. When visualizing data broken out by "User continent"
they might want North America to appear first. An ordered list of user continents has been provided as continent_categories
. In this exercise, you will work through preparing a visualization that is ordered by the frequency counts of a Series.
Diese Übung ist Teil des Kurses
Working with Categorical Data in Python
Interaktive Übung
Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.
# Create a bar chart
sns.set(font_scale=.9)
sns.set_style("whitegrid")
sns.catplot(____, ____, data=reviews, kind=____)
plt.show()