Matplotlib
文章平均质量分 68
Acowardintheworld
这个作者很懒,什么都没留下…
展开
-
3_Jupyter Notebook, numpy和matplotlib
第3章 Jupyter Notebook, numpy和matplotlib工欲善其事,必先利其器。在本章,我们将学习和机器学习相关的基础工具的使用:Jupyter Notebook, numpy和matplotlib。3-1 Jupyter Notebook基础 3-2 Jupyter Notebook中的魔法命令了解基本的操作之后可以通过红框的设置隐藏一些工具功能,来扩大显示代码的区域。基本操作(鼠标点在代码区域的坐标)参考文档https://blog.csdn.net/enter89/原创 2021-09-28 16:28:55 · 128 阅读 · 0 评论 -
Python matplotlib画图出现No handles with labels found to put in legend
Python matplotlib画图出现No handles with labels found to put in legend这种错误是代表无法在图中显示标签,有两种可能。第一种:plt.scatter() 中缺乏label = “xx”或者第二种:plt.scatter(),plt.figure() 顺序错误第一种:plt.scatter() 中缺乏label = “xx”plt.legend()就是为了展示标签,前面函数中没有定义,自然无法显示import numpy a原创 2021-03-11 21:01:18 · 1400 阅读 · 0 评论