如何在matplotlib中分别显示数字?

如何在matplotlib中分别显示数字?,第1张

如何在matplotlib中分别显示数字

当然。在添加

Axes
使用
add_subplot
。(编辑
import
。)(编辑
show
。)

import matplotlib.pyplot as pltf1 = plt.figure()f2 = plt.figure()ax1 = f1.add_subplot(111)ax1.plot(range(0,10))ax2 = f2.add_subplot(111)ax2.plot(range(10,20))plt.show()

或者,使用

add_axes

ax1 = f1.add_axes([0.1,0.1,0.8,0.8])ax1.plot(range(0,10))ax2 = f2.add_axes([0.1,0.1,0.8,0.8])ax2.plot(range(10,20))


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存