【发布时间】:2020-06-20 09:10:46
【问题描述】:
有没有什么办法可以消除通过 Matplotlib 在 Google Colab 中绘制图形时出现的额外信息? image of what I want to remove
【问题讨论】:
标签: matplotlib google-colaboratory
有没有什么办法可以消除通过 Matplotlib 在 Google Colab 中绘制图形时出现的额外信息? image of what I want to remove
【问题讨论】:
标签: matplotlib google-colaboratory
在单元格的最后一行后加分号:
plt.hist([predicted, Y_test);
这将禁止打印函数的文本返回值,同时仍显示它创建的图表。
【讨论】: