mirror of
https://github.com/fastai/fastbook.git
synced 2025-04-04 01:40:44 +00:00
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:
parent
c3ceea7996
commit
7a29ca42da
@ -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);"
|
||||
]
|
||||
|
@ -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);"
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user