如何在python熊猫中使用列表设置数据帧的索引?

时间:2018-07-21 13:18:38

标签: python pandas

我有一本用来构成数据框的字典。 我有想要将其设置为索引的列表。

import numpy as np
import pandas as pd
data = {'animal': ['cat', 'cat', 'snake', 'dog', 'dog', 'cat', 'snake', 'cat', 'dog', 'dog'],
        'age': [2.5, 3, 0.5, np.nan, 5, 2, 4.5, np.nan, 7, 3],
        'visits': [1, 3, 2, 3, 2, 3, 1, 1, 2, 1],
        'priority': ['yes', 'yes', 'no', 'yes', 'no', 'no', 'no', 'yes', 'no', 'no']}
labels = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']
df=pd.DataFrame(data)
df.set_index(labels)

我收到KeyError:'a'作为错误。

0 个答案:

没有答案