gpt4 book ai didi

python - Pandas 的年度箱线图

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

我有一个 DataFrame(多个每日时间序列),DateTimeIndex 作为 indexMultiIndex 作为 columns。我想选择一列并创建一个箱形图,其中数据按年份分组。我认为这很容易,但我正在努力获得一些结果。

>>> daily.shape
(11319, 118)

>>> daily.index
DatetimeIndex(['1986-01-01', '1986-01-02', '1986-01-03', '1986-01-04',
'1986-01-05', '1986-01-06', '1986-01-07', '1986-01-08',
'1986-01-09', '1986-01-10',
...
'2016-12-22', '2016-12-23', '2016-12-24', '2016-12-25',
'2016-12-26', '2016-12-27', '2016-12-28', '2016-12-29',
'2016-12-30', '2016-12-31'],
dtype='datetime64[ns]', name='timevalue', length=11319, freq=None)
>>> daily.columns
MultiIndex(levels=[['41B001', '41B004', '41B006', '41B008', '41B011', '41MEU1', '41N043', '41R001', '41R002', '41R012', '41WOL1', '41WOL2', '47E013', 'T1M001', 'T1M003'], ['BA-10.0', 'BA-2.5', 'BC', 'CO', 'CO2', 'NO', 'NO2', 'NOx', 'O3', 'PM-10.0', 'PM-2.5', 'RH', 'SO2', 'T', 'UVPM', 'VO-10.0', 'VO-2.5', 'WD', 'WS-s', 'WS-v', 'p']],
labels=[[0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 11, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 14, 14, 14, 14, 14, 14, 14], [5, 6, 7, 3, 5, 6, 7, 8, 3, 5, 6, 7, 8, 3, 5, 6, 7, 12, 0, 1, 5, 6, 7, 8, 9, 10, 15, 16, 0, 1, 5, 6, 7, 9, 10, 15, 16, 0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 0, 1, 2, 3, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 2, 3, 4, 5, 6, 7, 12, 14, 0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 0, 2, 3, 4, 5, 6, 7, 8, 9, 12, 14, 15, 4, 5, 6, 7, 12, 11, 13, 13, 17, 18, 19, 20, 11, 13, 13, 17, 18, 19, 20]],
names=['sitekey', 'measurandkey'])

我能做到的最好的是:

fig, axe = plt.subplots()
daily.loc[:,[('41R001', 'SO2')]].groupby(daily.index.map(lambda x: x.year)).boxplot(ax=axe, subplots=False, rot=90)

但它需要其他后处理来标记轴。

当我尝试 reset_index() 应用函数并使用 pivot() 时,由于 MultiIndex,我出现了索引错误。

d = daily.reset_index()
d['timevalue']

异常(exception)是:无法处理非唯一的多索引!我不明白,因为我的 MultiIndex 中没有出现 TimeValue。我也尝试过 .loc[] 但我认为问题出在其他地方。

所以,我要实现的目标很简单:

  • 我有多年的每日时间序列,这些时间序列是多索引的;
  • 我想选择其中一个(使用 loc 和上面示例中的复合键)并获得一个时间序列箱线图,其中数据按年份分组。

我认为这很容易,但由于多索引错误,我无法将 pivot() 正确地用于此 DataFrame。

最佳答案

如果你不介意使用 seaborn 库,你可以很容易地制作这个图:

import pandas as pd
import seaborn as sns

index = pd.DatetimeIndex(start=pd.to_datetime('1985-01-01'),
end = pd.to_datetime('2017-03-08'),
freq='d')
df = pd.DataFrame(index = index,
data = np.random.uniform(-1,1,size=(index.shape[0],4)),
columns=pd.MultiIndex.from_arrays([['A','A','B','B'],
['d','e','d','e']]))
df['Year'] = df.index.year
# A B Year
# d e d e
# 1985-01-01 0.205208 -0.228484 0.296273 0.545031 1985
# 1985-01-02 0.546436 -0.538920 0.173388 0.848590 1985
# 1985-01-03 -0.367593 -0.974911 -0.796331 -0.946239 1985
# 1985-01-04 -0.346102 -0.951542 -0.975172 0.951099 1985
# 1985-01-05 0.973975 0.708254 -0.150454 0.145298 1985

ax = sns.boxplot(data = df, x='Year',y=('A','e'))
for item in ax.get_xticklabels():
item.set_rotation(90)

生成的图像:

yearly boxplot

我尝试使用 pandas.DataFrame.boxplot() 方法,但无法在短时间内为这种情况工作=)。

关于python - Pandas 的年度箱线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43065157/

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