Unstack Pandas DataFrame with MultiIndex

坚强是说给别人听的谎言 提交于 2019-12-12 01:54:47

问题


I have seen a lots of similar questions over here, but unfortunately I was not able to find the answers that could help me.

What I'm trying to do is to reshape the DataFrame with MultiIndex via unstack() method. Here is it:

                                                                      val  
item  indicator                                                            
0     Расположение:                          Минское шоссе /Минское шоссе  
      Направление:                                                  Запад  
      Площадь:                                                    1200 м²  
      Стоимость:                                       1 007 259 000 руб.  
1     Расположение:                            Переделкино /Минское шоссе  
      Направление:                                                  Запад  
      Площадь:                                                     850 м²  
      Стоимость:                                         973 683 700 руб.  
2     Расположение:                                Бородки /Минское шоссе  
      Направление:                                                  Запад  
      Площадь:                                                     860 м²  
      Стоимость:                                         786 669 600 руб.  

The desired output:

    Расположение:    Направление:    Площадь:    Стоимость:
0       ...             ...            ...          ...
1       ...             ...            ...          ...
2       ...             ...            ...          ...      

I tried to use the unstack() according to the manual, but with no success:

In [6]: combined.unstack('indicator')
...
ValueError: Index contains duplicate entries, cannot reshape

Any help will be appreciated.


回答1:


Thanks to everyone, there were mistakes in my DataFrame. I missed them.



来源:https://stackoverflow.com/questions/28226074/unstack-pandas-dataframe-with-multiindex

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!