我有一个像这样的数据透视表;
amount
product year-month
5 2015-03-01 408.0
2015-04-01 6081.0
2015-05-01 10915.0
2015-06-01 12202.0
2015-07-01 13342.0
2015-08-01 18786.0
2015-09-01 9491.0
2015-10-01 6014.0
...
我无法选择索引列。 如何选择专栏' year-month'或者'金额'?
year-month
2015-03-01
2015-04-01
2015-05-01
2015-06-01
...
修改
这不起作用;
pivot_df['year-month']
答案 0 :(得分:1)
一个非常有用的命令,特别是在数据透视表命令之后,是重置索引:
pivot_df.reset_index(inplace=True)
您还可以将特定列设置为索引:
pivot_df.set_index('year-month', inplace=True)