如何将一列的所有值转换为Pandas的DataFrame中的单独列名

时间:2016-10-03 21:02:17

标签: python pandas dataframe pivot

样本数据如下:

df = pd.DataFrame([(2011, 'a', 1.3), (2012, 'a', 1.4), (2013, 'a', 1.6), (2011, 'b', 0.7), (2012, 'b', 0.9), (2013, 'b', 1.2),], columns=['year', 'district', 'price'])
df.set_index(['year'], inplace=True)
df.head(n=10)

可以产生如下数据:

    district    price
year        
2011    a       1.3
2012    a       1.4
2013    a       1.6
2011    b       0.7
2012    b       0.9
2013    b       1.2

我打算将DataFrame转换为如下所示:

        a       b
year        
2011    1.3     0.7
2012    1.4     0.9
2013    1.6     1.2

有谁能告诉我如何做到这一点?非常感谢!

1 个答案:

答案 0 :(得分:0)

使用pivot

In[122]: df.reset_index().pivot('year','district','price')
Out[122]: 
district    a    b
year              
2011      1.3  0.7
2012      1.4  0.9
2013      1.6  1.2