我正在尝试创建两个具有相同轴的独立散点图。正如下面的代码所示,我明确地设置了我的轴限制。但是,由于两个图之间的数据分布不同,因此这些限制内的 x 轴的缩放比例正在发生变化。比较下面的图 1 和图 2,使用 相同的 代码绘制(除了不同的 x 值):
图 1
#set up figure
fig, ax1 = plt.subplots(1,1)
#plot first series (left y axis)
df.plot(ax=ax1, kind='line', x=bin1, y='hfall', logx=True,
color='DarkBlue', style='.', markersize=5, legend=False)
#set up second axis as duplicate of the first
ax2 = ax1.twinx()
#plot second series (right y axis)
df.plot(ax=ax2, kind='line', x=bin1, y='vf', logx=True,
color='Red', style='.', markersize=5, legend=False)
#set axes limits
ax1.set_xlim([0.,0.4])
ax1.set_ylim([1,1.15])
ax2.set_xlim([0.,0.4])
ax2.set_ylim([2e-06,6e-06])
#set labels and title
ax1.set_ylabel('Total horizontal flux ($kg/m^2/s$)', color='DarkBlue')
ax1.set_xlabel('horizontal flux in bin1 ($kg/m^2/s$)')
ax1.set_title('bin1', loc='center', fontsize=14)
ax2.ticklabel_format(axis='y', style='sci', scilimits=(0,0))
ax2.set_ylabel('Total vertical flux (all bins) ($kg/m^2/s$)', color='Red')
plt.show()
图 2
#set up figure
fig, ax1 = plt.subplots(1,1)
#plot first series (left y axis)
df.plot(ax=ax1, kind='line', x=bin2, y='hfall', logx=True,
color='DarkBlue', style='.', markersize=5, legend=False)
#set up second axis as duplicate of the first
ax2 = ax1.twinx()
#plot second series (right y axis)
df.plot(ax=ax2, kind='line', x=bin2, y='vf', logx=True,
color='Red', style='.', markersize=5, legend=False)
#set axes limits
ax1.set_xlim([0.,0.4])
ax1.set_ylim([1,1.15])
ax2.set_xlim([0.,0.4])
ax2.set_ylim([2e-06,6e-06])
#set labels and title
ax1.set_ylabel('Total horizontal flux ($kg/m^2/s$)', color='DarkBlue')
ax1.set_xlabel('horizontal flux in bin2 ($kg/m^2/s$)')
ax1.set_title('bin2', loc='center', fontsize=14)
ax2.ticklabel_format(axis='y', style='sci', scilimits=(0,0))
ax2.set_ylabel('Total vertical flux (all bins) ($kg/m^2/s$)', color='Red')
plt.show()
我很欣赏这可能最能向我展示我的数据中的可变性,但我想直接比较这些图 - 在对数刻度上占用空间的变化是有用的。所以,有没有人知道如何阻止 x 轴的这种自动缩放? (即我希望 x 轴在两个图上相同)
最佳答案
您不能在对数轴上将 xlim
设置为 0。尝试将其设置为要匹配的轴低端的数字。例如
ax1.set_xlim([2e-3,0.4])
ax2.set_xlim([2e-3,0.4])
关于python - Pandas 散点图 : stop automatic scaling of axis,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35085400/