gpt4 book ai didi

python-3.x - 将子图的标题放在子图行的左侧

转载 作者:行者123 更新时间:2023-12-03 21:22:11 31 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Row and column headers in matplotlib's subplots

(2 个回答)


3年前关闭。




当放置在 x*2 子图的网格中时,是否可以将子图的标题放在图的左侧?这些图共享 x 轴,并按两个方向放置,因为它们表示两个方向的道路交通计数。布局思路:enter image description here

子图放置为发现 here :

import matplotlib.pyplot as plt
import numpy as np

# Simple data to display in various forms
x = np.linspace(0, 2 * np.pi, 400)
y = np.sin(x ** 2)

# row and column sharing
f, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, sharex='col', sharey='row')
ax1.plot(x, y)
ax1.set_title('Sharing x per column, y per row')
ax2.scatter(x, y)
ax3.scatter(x, 2 * y ** 2 - 1, color='r')
ax4.plot(x, 2 * y ** 2 - 1, color='r')

最佳答案

似乎没有直接的方法可以做到这一点。我相信您最好的选择是 plt.text() .

关于python-3.x - 将子图的标题放在子图行的左侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50906873/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com