Fix bottom='off' to bottom=False in tools_matplotlib.ipynb

main
Alejandro Samarín 2020-11-27 01:59:30 +00:00
parent 8ebdcffc6b
commit 05aca9c313
1 changed files with 1 additions and 1 deletions

View File

@ -695,7 +695,7 @@
"ax = plt.subplot(133)\n",
"plt.plot(x, x**3)\n",
"plt.minorticks_on()\n",
"ax.tick_params(axis='x', which='minor', bottom='off')\n",
"ax.tick_params(axis='x', which='minor', bottom=False)\n",
"ax.xaxis.set_ticks([-2, 0, 1, 2])\n",
"ax.yaxis.set_ticks(np.arange(-5, 5, 1))\n",
"ax.yaxis.set_ticklabels([\"min\", -4, -3, -2, -1, 0, 1, 2, 3, \"max\"])\n",