请参阅多索引pandas数据帧中的pandas系列值

问题描述 投票:1回答:1

我有以下pandas.core.series.Series

Color
Red      4
Green    7

和以下多索引数据帧。我的目标是通过将Target除以Value中相应的Color值,在数据框中创建pandas.core.series.Series列。例如,第一行Target应为12/4 = 3。

              Value    Target
Color Animal       
Red   Tiger      12      3
      Tiger      24      6
Green Lion       21      3
      Lion       35      5

我的以下尝试适用于单个索引,但使用带有错误Index._join_level on non-unique index is not implemented的multiindex失败

import pandas as pd
x = pd.Series([4,7], index=['Red','Green'])
x.index.name = 'Color'

dt = pd.DataFrame({'Color': ['Red','Red','Green','Green'], 'Animal': ['Tiger','Tiger','Lion','Lion'],  'Value': [12,24,21,35]})
dt.set_index(['Color','Animal'], inplace=True)
dt['Target'] = dt['Value'] / x.loc[dt.index.get_level_values('Color')]
python pandas numpy dataframe
1个回答
2
投票

只需使用index matching,因为您有相同标签的系列。

dt['Target'] = dt.Value/x

                Value   Target
Color   Animal      
Red     Tiger   12      3.0
        Tiger   24      6.0
Green   Lion    21      3.0
        Lion    35      5.0
© www.soinside.com 2019 - 2024. All rights reserved.