pythonmatplotlib绘图图框位置_python – 如何限制matplotlib图上的边框大小?

因为看起来你只是使用一个子图,你可能想要跳过add_subplot并直接转到

add_axes.这将允许你给出轴的大小(以图形相对坐标),这样你就可以把它做成如你所愿在图中大.在您的情况下,这将意味着您的代码看起来像

import matplotlib.pyplot as plt

fig = plt.figure()

# add_axes takes [left, bottom, width, height]

border_width = 0.05

ax_size = [0+border_width, 0+border_width,

1-2*border_width, 1-2*border-width]

ax = fig.add_axes(ax_size)

ax.plot_date((dates, dates), (highs, lows), '-', color='black')

ax.plot_date(dates, closes, '-', marker='_', color='black')

ax.set_title('Title')

ax.grid(True)

fig.set_figheight(96)

fig.set_figwidth(24)

如果需要,您甚至可以直接在figure()调用中将参数设置为set_figheight / set_figwidth.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值