Matplotlib sharex 没有按预期工作
Matplotlib sharex not working as expected
我确定我遗漏了一些明显的东西,但为什么 sharex=True, sharey=True
不起作用?我希望两个子图的 xlims 和 xticks 相同,并且两个子图的 ylims/yticks 相同。使用 Python 3.8.3,matplotlib 3.2.1.
x1, y1 = [(2,7,1), (6,2,2)]
x2, y2 = [(8,3,0), (1,4,9)]
fig, ax = plt.subplots(2,1, sharex=True, sharey=True, figsize=(15, 8));
ax1 = plt.subplot(2,1,1);
ax1.scatter(x1, y1, c='red', label='Set1');
ax2 = plt.subplot(2,1,2);
ax2.scatter(x2, y2, c='black', label='Set2');
ax1 = plt.subplot(2,1,1);
创建了一个与 ax
中已有的不同的(新的)子图。你想要:
fig, ax = plt.subplots(2,1, sharex=True, sharey=True, figsize=(15, 8));
ax1, ax2 = ax
ax1.scatter(x1, y1, c='red', label='Set1');
ax2.scatter(x2, y2, c='black', label='Set2');
或者简单地说:
fig, ax = plt.subplots(2,1, sharex=True, sharey=True, figsize=(15, 8));
ax[0].scatter(x1, y1, c='red', label='Set1');
ax[1].scatter(x2, y2, c='black', label='Set2');
输出:
我确定我遗漏了一些明显的东西,但为什么 sharex=True, sharey=True
不起作用?我希望两个子图的 xlims 和 xticks 相同,并且两个子图的 ylims/yticks 相同。使用 Python 3.8.3,matplotlib 3.2.1.
x1, y1 = [(2,7,1), (6,2,2)]
x2, y2 = [(8,3,0), (1,4,9)]
fig, ax = plt.subplots(2,1, sharex=True, sharey=True, figsize=(15, 8));
ax1 = plt.subplot(2,1,1);
ax1.scatter(x1, y1, c='red', label='Set1');
ax2 = plt.subplot(2,1,2);
ax2.scatter(x2, y2, c='black', label='Set2');
ax1 = plt.subplot(2,1,1);
创建了一个与 ax
中已有的不同的(新的)子图。你想要:
fig, ax = plt.subplots(2,1, sharex=True, sharey=True, figsize=(15, 8));
ax1, ax2 = ax
ax1.scatter(x1, y1, c='red', label='Set1');
ax2.scatter(x2, y2, c='black', label='Set2');
或者简单地说:
fig, ax = plt.subplots(2,1, sharex=True, sharey=True, figsize=(15, 8));
ax[0].scatter(x1, y1, c='red', label='Set1');
ax[1].scatter(x2, y2, c='black', label='Set2');
输出: