我有以下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')]
只需使用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