plt.hold(True) AttributeError: module 'matplotlib.pyplot' has no attribute 'hold'
时间: 2023-06-17 11:07:16 浏览: 350
python matplotlib:plt.scatter() 大小和颜色参数详解
5星 · 资源好评率100%
在较新的版本中,`matplotlib.pyplot` 模块已经移除了 `hold` 方法。如果你的代码中使用了 `plt.hold(True)` 方法,可以将其替换为 `plt.gca().set_prop_cycle(None)`,这将取消默认的颜色循环,使您可以在同一图形中绘制多个曲线而不必担心颜色重叠。
阅读全文