Matplotlib:如何设置当前数字?

Matplotlib:如何设置当前数字?,第1张

Matplotlib:如何设置当前数字

您可以使用以下命令简单地将图形设置

f1
为新的当前图形:

pl.figure(f1.number)

另一个选择是为数字赋予名称(或数字),这可能有助于使代码更易于阅读:

pl.figure("Share values")# ... some plots ...pl.figure("Profits")# ... some plots ...pl.figure("Share values")  # Selects the first figure again

实际上,数字“数字”可以是字符串,可以说比简单数字更明确。

PS :本pyplot相当于

pylab.figure()
IS
matplotlib.pyplot.figure()



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5674177.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存