matplotlib:控制马赛克的尺寸

发布于 2025-02-01 09:34:15 字数 444 浏览 1 评论 0原文

我使用文档中的代码来创建马赛克。我现在如何单独控制数字的高度?

fig, axs = plt.subplot_mosaic([['a)', 'b)'], ['c)', 'c)']],constrained_layout = True)
for label, ax in axs.items():
    # label physical distance to the left and up:
    trans = mtransforms.ScaledTranslation(-20/72, 7/72, fig.dpi_scale_trans)
    ax.text(0.0, 1.0, label, transform=ax.transAxes + trans,
            fontsize='medium', va='bottom', fontfamily='serif')


plt.show()

I used this code from the documentation to create a mosaic. How do I control the heights of figures individually now?

fig, axs = plt.subplot_mosaic([['a)', 'b)'], ['c)', 'c)']],constrained_layout = True)
for label, ax in axs.items():
    # label physical distance to the left and up:
    trans = mtransforms.ScaledTranslation(-20/72, 7/72, fig.dpi_scale_trans)
    ax.text(0.0, 1.0, label, transform=ax.transAxes + trans,
            fontsize='medium', va='bottom', fontfamily='serif')


plt.show()

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文