matplotlib中具有不同比例的多个轴[重复]

bgibtngc  于 2023-03-13  发布在  其他
关注(0)|答案(3)|浏览(201)

此问题在此处已有答案

matplotlib: overlay plots with different scales?(5个答案)
Secondary axis with twinx(): how to add to legend?(11个答案)
三年前关闭了。
如何在Matplotlib中实现多个尺度?我不是在谈论同一个x轴上绘制的主坐标轴和次坐标轴,而是在同一个y轴上绘制不同尺度的趋势,并且可以通过它们的颜色来识别。
例如,如果要绘制trend1 ([0,1,2,3,4])trend2 ([5000,6000,7000,8000,9000])与时间的关系图,并希望这两个趋势具有不同的颜色、Y轴和不同的比例,那么如何使用Matplotlib来实现这一点?
当我调查Matplotlib时,他们说他们现在还没有这个,尽管它肯定在他们的愿望清单上,有什么办法让它发生吗?
有没有其他的python绘图工具可以做到这一点?

3yhwsihp

3yhwsihp1#

如果我理解了这个问题,您可能会对Matplotlib库中的this example感兴趣。

Yann上面的评论提供了一个类似的例子。
编辑-修复了上面的链接。从Matplotlib库复制了相应的代码:

from mpl_toolkits.axes_grid1 import host_subplot
import mpl_toolkits.axisartist as AA
import matplotlib.pyplot as plt

host = host_subplot(111, axes_class=AA.Axes)
plt.subplots_adjust(right=0.75)

par1 = host.twinx()
par2 = host.twinx()

offset = 60
new_fixed_axis = par2.get_grid_helper().new_fixed_axis
par2.axis["right"] = new_fixed_axis(loc="right", axes=par2,
                                        offset=(offset, 0))

par2.axis["right"].toggle(all=True)

host.set_xlim(0, 2)
host.set_ylim(0, 2)

host.set_xlabel("Distance")
host.set_ylabel("Density")
par1.set_ylabel("Temperature")
par2.set_ylabel("Velocity")

p1, = host.plot([0, 1, 2], [0, 1, 2], label="Density")
p2, = par1.plot([0, 1, 2], [0, 3, 2], label="Temperature")
p3, = par2.plot([0, 1, 2], [50, 30, 15], label="Velocity")

par1.set_ylim(0, 4)
par2.set_ylim(1, 65)

host.legend()

host.axis["left"].label.set_color(p1.get_color())
par1.axis["right"].label.set_color(p2.get_color())
par2.axis["right"].label.set_color(p3.get_color())

plt.draw()
plt.show()

#plt.savefig("Test")
mf98qq94

mf98qq942#

由于Steve Tjoa's answer总是第一个出现,而且当我在Google上搜索多个y轴时,几乎是孤独的,所以我决定添加一个稍微修改过的版本,这就是this matplotlib example的方法。
理由:

  • 他的模块有时会在未知的情况下和神秘的实习生错误中失败。
  • 我不喜欢加载我不知道的外来模块(mpl_toolkits.axisartistmpl_toolkits.axes_grid1)。
  • 下面的代码包含了更多的“显式”命令来解决人们经常遇到的问题(比如多个轴的单个图例,使用viridis,......),而不是隐式的行为。

import matplotlib.pyplot as plt 

# Create figure and subplot manually
# fig = plt.figure()
# host = fig.add_subplot(111)

# More versatile wrapper
fig, host = plt.subplots(figsize=(8,5), layout='constrained') # (width, height) in inches
# (see https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.subplots.html and
# .. https://matplotlib.org/stable/tutorials/intermediate/constrainedlayout_guide.html)
    
ax2 = host.twinx()
ax3 = host.twinx()
    
host.set_xlim(0, 2)
host.set_ylim(0, 2)
ax2.set_ylim(0, 4)
ax3.set_ylim(1, 65)
    
host.set_xlabel("Distance")
host.set_ylabel("Density")
ax2.set_ylabel("Temperature")
ax3.set_ylabel("Velocity")

color1, color2, color3 = plt.cm.viridis([0, .5, .9])

p1 = host.plot([0, 1, 2], [0, 1, 2],    color=color1, label="Density")
p2 = ax2.plot( [0, 1, 2], [0, 3, 2],    color=color2, label="Temperature")
p3 = ax3.plot( [0, 1, 2], [50, 30, 15], color=color3, label="Velocity")

host.legend(handles=p1+p2+p3, loc='best')

# right, left, top, bottom
ax3.spines['right'].set_position(('outward', 60))

# no x-ticks                 
host.xaxis.set_ticks([])

# Alternatively (more verbose):
# host.tick_params(
#     axis='x',          # changes apply to the x-axis
#     which='both',      # both major and minor ticks are affected
#     bottom=False,      # ticks along the bottom edge are off)
#     labelbottom=False) # labels along the bottom edge are off
# sometimes handy:  direction='in'    

# Move "Velocity"-axis to the left
# ax3.spines['left'].set_position(('outward', 60))
# ax3.spines['left'].set_visible(True)
# ax3.spines['right'].set_visible(False)
# ax3.yaxis.set_label_position('left')
# ax3.yaxis.set_ticks_position('left')

host.yaxis.label.set_color(p1[0].get_color())
ax2.yaxis.label.set_color(p2[0].get_color())
ax3.yaxis.label.set_color(p3[0].get_color())

# For professional typesetting, e.g. LaTeX, use .pgf or .pdf
# For raster graphics use the dpi argument. E.g. '[...].png", dpi=300)'
plt.savefig("pyplot_multiple_y-axis.pdf", bbox_inches='tight')
# bbox_inches='tight': Try to strip excess whitespace
# https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.savefig.html
ddrv8njm

ddrv8njm3#

如果你想用辅助Y轴快速绘图,那么使用Pandas Package 器函数和2行代码有更简单的方法。只需绘制第一列,然后绘制第二列,但要使用参数secondary_y=True,如下所示:

df.A.plot(label="Points", legend=True)
df.B.plot(secondary_y=True, label="Comments", legend=True)

这将类似于以下内容:

你也可以做一些其他的事情。看看Pandas绘图文档。

相关问题