Remove redundant comment

This commit is contained in:
Aurélien Geron
2021-12-08 15:16:42 +13:00
parent 146e6fc062
commit 3552690321
6 changed files with 25 additions and 32 deletions

View File

@@ -91,8 +91,8 @@
"plt.rc('font', size=14)\n",
"plt.rc('axes', labelsize=14, titlesize=14)\n",
"plt.rc('legend', fontsize=14)\n",
"plt.rc('xtick',labelsize=10)\n",
"plt.rc('ytick',labelsize=10)"
"plt.rc('xtick', labelsize=10)\n",
"plt.rc('ytick', labelsize=10)"
]
},
{
@@ -215,7 +215,7 @@
"\n",
"# not in the book just formatting details\n",
"from matplotlib.colors import ListedColormap\n",
"custom_cmap = ListedColormap(['#fafab0','#9898ff','#a0faa0'])\n",
"custom_cmap = ListedColormap(['#fafab0', '#9898ff', '#a0faa0'])\n",
"plt.figure(figsize=(8, 4))\n",
"\n",
"lengths, widths = np.meshgrid(np.linspace(0, 7.2, 100), np.linspace(0, 3, 100))\n",