Add a missing sort_index() to ensure category order matches the returned series

value_counts() does not return with a sorted index, hence the plot's
labels were random.
This commit is contained in:
Armin Berres 2021-02-19 10:55:41 +01:00
parent c3ceea7996
commit 7a29ca42da
2 changed files with 2 additions and 2 deletions

View File

@ -8596,7 +8596,7 @@
}
],
"source": [
"p = valid_xs_final['ProductSize'].value_counts(sort=False).plot.barh()\n",
"p = valid_xs_final['ProductSize'].value_counts(sort=False).sort_index().plot.barh()\n",
"c = to.classes['ProductSize']\n",
"plt.yticks(range(len(c)), c);"
]

View File

@ -866,7 +866,7 @@
"metadata": {},
"outputs": [],
"source": [
"p = valid_xs_final['ProductSize'].value_counts(sort=False).plot.barh()\n",
"p = valid_xs_final['ProductSize'].value_counts(sort=False).sort_index().plot.barh()\n",
"c = to.classes['ProductSize']\n",
"plt.yticks(range(len(c)), c);"
]