当有两个索引,pandas,python

时间:2017-12-30 17:13:20

标签: python-2.7 pandas dataframe seaborn

我的数据框如下所示,

                USD 
state    date
  AL     01/01    10
         01/08    15
           .
           .
           .
         12/30    8

  AK     01/01    10
         01/08    15
           .
           .
           .
         12/30    8

适用于每个州。 我想在一个图中为每个州绘制日期与美元的关系。 我怎么能这样做?

1 个答案:

答案 0 :(得分:2)

使用unstackplot

df.unstack(0).plot()

数据输入

df
Out[92]: 
             USD
state date      
AL    01/01   10
      01/08   15
      12/30    8
AK    01/01    3
      01/08    5
      12/30    2

enter image description here