回答編集履歴

1

Update

2022/01/21 13:54

投稿

melian
melian

スコア19831

test CHANGED
@@ -1,6 +1,6 @@
1
1
  > col13に修正、
2
2
 
3
- `append` ではなく `concat` を使うとよいかもしれません。
3
+ `append` ではなく `concat` を使うとよいかもしれません(その際に `axis=1` を指定します)
4
4
  ```python
5
5
  df1 = pd.concat([df1, df2['col13']], axis=1)
6
6
  ```