I am close but not quite there. I am trying to sort an sns.catplot
by value counts within each grouping.
Code and Output:
fig = plt.subplots(dpi=300)
plt.figure(figsize=(10, 10))
grid = sns.catplot(data=df, kind='count', y='violation_raw', row='stop_duration', height=4, aspect=3,
sharey=False, palette="dark:salmon_r",
order=df['violation_raw'].value_counts(ascending=False).index)
ax = grid.axes[0, 0]
ax.bar_label(ax.containers[0])
ax = grid.axes[1, 0]
ax.bar_label(ax.containers[0])
ax = grid.axes[2, 0]
ax.bar_label(ax.containers[0])
plt.xlabel("Count", labelpad=12)
plt.margins(x=0.2)
plt.tight_layout()
plt.show()
It is listing the rows in the exact same order per grouping, but they are not sorted by value counts within each grouping.
I want to sort, by value_counts()
the rows in each respective grouping.