python - 将 Dataframe 列转换为行 Dataframe

标签 python pandas dataframe

我有以下数据框:

data = {'year': [2010, 2010, 2011, 2012, 2011, 2012, 2010, 2011, 2012, 2013],
        'store_number': ['1944', '1945', '1946', '1947', '1948', '1949', '1947', '1948', '1949', '1947'],
        'retailer_name': ['Walmart','Walmart', 'CRV', 'CRV', 'CRV', 'Walmart', 'Walmart', 'CRV', 'CRV', 'CRV'],
        'product': ['a', 'b', 'a', 'a', 'b', 'a', 'b', 'a', 'a', 'c'],
        'amount': [5, 5, 8, 6, 1, 5, 10, 6, 12, 11]}

stores = pd.DataFrame(data, columns=['retailer_name', 'store_number', 'year', 'product', 'amount'])
stores.set_index(['retailer_name', 'store_number', 'year', 'product'], inplace=True)

stores.groupby(level=[0, 1, 2, 3]).sum()

我想转换以下 Dataframe:

                                         amount
retailer_name store_number year product        
CRV           1946         2011 a             8
              1947         2012 a             6
                           2013 c            11
              1948         2011 a             6
                                b             1
              1949         2012 a            12
Walmart       1944         2010 a             5
              1945         2010 b             5
              1947         2010 b            10
              1949         2012 a             5

进入行的数据框:

retailer_name store_number year a b c
CRV           1946         2011 8 0 0
CRV           1947         2012 6 0 0
etc...

产品提前知道。 知道怎么做吗?

最佳答案

请参阅下面的解决方案。感谢 EdChum 对原帖的更正。

没有 reset_index()

stores.groupby(level=[0, 1, 2, 3]).sum().unstack().fillna(0)




                 amount        
product                              a   b   c
retailer_name store_number year               
CRV           1946         2011      8   0   0
              1947         2012      6   0   0
                           2013      0   0  11
              1948         2011      6   1   0
              1949         2012     12   0   0
Walmart       1944         2010      5   0   0
              1945         2010      0   5   0
              1947         2010      0  10   0
              1949         2012      5   0   0

使用 reset_index()

stores.groupby(level=[0, 1, 2, 3]).sum().unstack().reset_index().fillna(0)



  retailer_name store_number  year amount        
product                                       a   b   c
0                 CRV         1946  2011      8   0   0
1                 CRV         1947  2012      6   0   0
2                 CRV         1947  2013      0   0  11
3                 CRV         1948  2011      6   1   0
4                 CRV         1949  2012     12   0   0
5             Walmart         1944  2010      5   0   0
6             Walmart         1945  2010      0   5   0
7             Walmart         1947  2010      0  10   0
8             Walmart         1949  2012      5   0   0

关于python - 将 Dataframe 列转换为行 Dataframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37333614/

相关文章:

python - 合并数据框的两列,然后进行比较

python - DataFrame 中行之间的二元运算

python - time.localtime() - 它是如何工作的?关于如何使用它的简短问题 - super 简单的东西!

python - Python 中 __getitem__ 的多个级别

python Pandas : Lookup table by searching for substring

python - Pandas to_sql 索引从 1 开始

python - Pyspark:将多个数组列拆分为行

python - 从 Microsoft VBA 宏中写入标准输出

python - 递归地循环遍历类别

python - 前向填充时间序列数据指定频率的某些列