Working with Categorical Data in Python
Kasey Jones
Research Data Scientist
sns.catplot(x="Traveler type", kind="count",
col="User continent",
col_wrap=3,
palette=sns.color_palette("Set1"), data=reviews)
x
: "Traveler type"
kind
: "count"
col
: "User continent"
col_wrap
: 3
palette
: sns.color_palette("Set1")
"Set"
, "Set2"
, "Tab10"
, "Paired"
ax
ax.fig.suptitle("My title")
ax.set_axis_labels("x-axis-label", "y-axis-label")
plt.subplots_adjust(top=.9)
ax = sns.catplot(x="Traveler type", col="User continent", col_wrap=3,
kind="count", palette=sns.color_palette("Set1"), data=reviews)
ax.fig.suptitle("Hotel Score by Traveler Type & User Continent")
ax.set_axis_labels("Traveler Type", "Number of Reviews")
plt.subplots_adjust(top=.9)
plt.show()
Working with Categorical Data in Python