gpt4 book ai didi

python - 具有多个不同比例的 Y 轴的堆叠水平图

转载 作者:行者123 更新时间:2023-12-04 04:13:40 24 4
gpt4 key购买 nike

您好,我正在尝试创建:

  1. 水平堆叠的地 block
  2. 在两个图上都有副轴
  3. 在轴上有不同的比例 - 不幸的是,我的 Y 轴目前每个子图都有相同的比例...... :(

当前代码:

#  Create axes
fig, (ax1, ax2) = plt.subplots(1, 2)
fig.suptitle("XYZ")
fig.set_figheight(5)
fig.set_figwidth(15)
# First graph
ax1.scatter(
df_PTA_clip_pstar["start_time"],
df_PTA_clip_pstar["pstar"],
s=5,
c="black",
label="P*",
)
plt.ylabel("P*")
ax1.scatter(df_PTA_clipkh["start_time"], df_PTA_clipkh["kh"], s=2, c="cyan", label="Kh")
ax1.secondary_yaxis("right")
plt.ylabel("Kh")

# Second graph - will add the correct data to this once first graph fixed
ax2.scatter(x, y, s=5, c="Red", label="P*")
ax2.scatter(x, z, s=5, c="Green", label="Kh")

ax2.secondary_yaxis("right")
plt.tight_layout()
plt.legend()
plt.show()

目前进度:

Current progress

最佳答案

您可以在每个 ax 对象上使用 .twinx() 方法,这样您就可以在同一个 ax 对象上绘制两个共享 x 轴的图:

import matplotlib.pyplot as plt
import numpy as np


# Create axes
fig, (ax1, ax2) = plt.subplots(1, 2)

## First subplot
x = np.random.random_sample(100)
y = np.random.random_sample(100)

ax1.set_xlim(0, 2)
ax1.scatter(x, y,
s=5,
c="black")

ax11 = ax1.twinx()
x = 1 + x
y = 1 + np.random.random_sample(100)
ax11.scatter(x, y,
s=5,
c="red")

## Second subplot
x = 2 * np.random.random_sample(100) - 1
y = np.random.random_sample(100)

ax2.set_xlim(-1, 2)
ax2.scatter(x, y,
s=5,
c="blue")

ax21 = ax2.twinx()
x = 1 + x
y = 10 + np.random.random_sample(100)
ax21.scatter(x, y,
s=5,
c="orange")

plt.show()

enter image description here

关于python - 具有多个不同比例的 Y 轴的堆叠水平图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61202994/

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