gpt4 book ai didi

python - 如何从多个 Pandas 地 block 中获取多个图例

转载 作者:太空宇宙 更新时间:2023-11-04 01:16:14 24 4
gpt4 key购买 nike

我有两个数据框(都按时间索引),我想在同一个图上绘制两个数据框中的列,并使用图例表示同一个数据框中有两列。

如果我用一列打开图例,它工作正常,但如果我尝试同时执行这两个操作,第二个会覆盖第一个。

import pandas as pd

# Use ERDDAP's built-in relative time functionality to get last 48 hours:
start='now-7days'
stop='now'

# URL for wind data
url='http://www.neracoos.org/erddap/tabledap/E01_met_all.csv?\
station,time,air_temperature,barometric_pressure,wind_gust,wind_speed,\
wind_direction,visibility\
&time>=%s&time<=%s' % (start,stop)

# load CSV data into Pandas
df_met = pd.read_csv(url,index_col='time',parse_dates=True,skiprows=[1]) # skip the units row

# URL for wave data
url='http://www.neracoos.org/erddap/tabledap/E01_accelerometer_all.csv?\
station,time,mooring_site_desc,significant_wave_height,dominant_wave_period&\
time>=%s&time<=%s' % (start,stop)

# Load the CSV data into Pandas
df_wave = pd.read_csv(url,index_col='time',parse_dates=True,skiprows=[1]) # skip the units row

绘制一个效果很好:

df_met['wind_speed'].plot(figsize=(12,4),legend=True);

enter image description here

但如果我尝试绘制两者,第一个图例就会消失:

df_met['wind_speed'].plot(figsize=(12,4),legend=True)
df_wave['significant_wave_height'].plot(secondary_y=True,legend=True);

enter image description here

最佳答案

好的,多亏了 unutbu 的评论让我指出了本质上相同的问题(我搜索过但没有找到),我只需要将我的 plot 命令修改为:

df_met['wind_speed'].plot(figsize=(12,4))
df_wave['significant_wave_height'].plot(secondary_y=True);
ax = gca();
lines = ax.left_ax.get_lines() + ax.right_ax.get_lines()
ax.legend(lines, [l.get_label() for l in lines])

现在我明白了,这正是我一直在寻找的: enter image description here

嗯。几乎。最好在图例上加上 (right) 和 (left) 以明确哪条线对应哪个比例尺。 @unutbu 再次救援:

df_met['wind_speed'].plot(figsize=(12,4))
df_wave['significant_wave_height'].plot(secondary_y=True);
ax = gca();
lines = ax.left_ax.get_lines() + ax.right_ax.get_lines()
ax.legend(lines, ['{} ({})'.format(l.get_label(), side) for l, side in zip(lines, ('left', 'right'))]);

产生:

enter image description here

关于python - 如何从多个 Pandas 地 block 中获取多个图例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24497103/

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