1. ホーム
  2. python

[解決済み] パイソンパンダのメルトの反対側

2023-05-19 10:37:04

質問

PythonのPandasを使ってquot;reverse melt(逆溶融)を行う方法がわかりません。 これは私のスタートデータです。

import pandas as pd

from StringIO import StringIO

origin = pd.read_table(StringIO('''label    type    value
x   a   1
x   b   2
x   c   3
y   a   4
y   b   5
y   c   6
z   a   7
z   b   8
z   c   9'''))

origin
Out[5]: 
  label type  value
0     x    a      1
1     x    b      2
2     x    c      3
3     y    a      4
4     y    b      5
5     y    c      6
6     z    a      7
7     z    b      8
8     z    c      9

これが私が望む出力です。

    label   a   b   c
        x   1   2   3
        y   4   5   6
        z   7   8   9

簡単な方法があると思うのですが、どうしたらいいのでしょうか。

どのように解決するのですか?

いくつかの方法があります。

使用方法 .pivot :

>>> origin.pivot(index='label', columns='type')['value']
type   a  b  c
label         
x      1  2  3
y      4  5  6
z      7  8  9

[3 rows x 3 columns]

を使って pivot_table :

>>> origin.pivot_table(values='value', index='label', columns='type')
       value      
type       a  b  c
label             
x          1  2  3
y          4  5  6
z          7  8  9

[3 rows x 3 columns]

または .groupby に続いて .unstack :

>>> origin.groupby(['label', 'type'])['value'].aggregate('mean').unstack()
type   a  b  c
label         
x      1  2  3
y      4  5  6
z      7  8  9

[3 rows x 3 columns]