轴类-以给定单位明确设置轴的尺寸(宽度高度)

轴类-以给定单位明确设置轴的尺寸(宽度高度),第1张

轴类-以给定单位明确设置轴的尺寸(宽度/高度)

轴尺寸由图形尺寸和图形间距确定,可以使用设置

figure.subplots_adjust()
。相反,这意味着您可以通过考虑图形间距来设置图形尺寸来设置轴尺寸:

import matplotlib.pyplot as pltdef set_size(w,h, ax=None):    """ w, h: width, height in inches """    if not ax: ax=plt.gca()    l = ax.figure.subplotpars.left    r = ax.figure.subplotpars.right    t = ax.figure.subplotpars.top    b = ax.figure.subplotpars.bottom    figw = float(w)/(r-l)    figh = float(h)/(t-b)    ax.figure.set_size_inches(figw, figh)fig, ax=plt.subplots()ax.plot([1,3,2])set_size(5,5)plt.show()


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存