使用列表索引多索引数据帧

时间:2017-08-31 14:05:53

标签: python pandas dataframe multi-index

我有一个像这样创建的多索引pandas数据框:

m_index = ['time_remaining', 'inventory']
for i in indicators:
    m_index.append(i.name)
cols = []
for col in m_index:
    cols.append(col)
cols.append('action')
cols.append('cost')

optimal_actions = pd.DataFrame(columns=cols)
optimal_actions.set_index(m_index, inplace=True)

然后我有一个索引值列表:

state_variables = [indicator.value for indicator in indicators]
state = [time_remaining, i*trade_size]      
state.extend(state_variables)

我正在尝试将值列表索引的行设置为值:

state = [300, 1, 1.0]
optimal_actions.loc[state] = [-1, -0.2]

这给了我一个令人讨厌的错误:

ValueError: zero-size array to reduction operation maximum which has no identity

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:1)

如果有人需要这个,我最后通过一个元组而不是一个列表索引多索引来解决它。因此对上述代码的修改将是:

state = [300, 1, 1.0]
optimal_actions.loc[tuple(state)] = [-1, -0.2]