回答編集履歴
1
test
CHANGED
@@ -1,12 +1,10 @@
|
|
1
1
|
> 質問1
|
2
2
|
|
3
|
-
Pivot tab
|
3
|
+
Pivot table を使います。
|
4
4
|
|
5
5
|
```python
|
6
|
-
dfx = df.groupby(['A', 'B', 'd_type']).sum().reset_index()
|
6
|
+
dfx = df.groupby(['A', 'B', 'd_type']).sum().reset_index(level='d_type')\
|
7
|
-
dfx = pd.concat([dfx[['A', 'B']],
|
8
|
-
|
7
|
+
.pivot(columns='d_type', values='value').reset_index().rename_axis(None, axis=1)
|
9
|
-
axis=1)
|
10
8
|
|
11
9
|
print(dfx)
|
12
10
|
```
|