質問編集履歴

1

誤字

2020/10/15 15:25

投稿

taisei_02
taisei_02

スコア4

test CHANGED
@@ -1 +1 @@
1
- Pandasを使ったデータの前処理
1
+ [python]Pandasを使ったデータの前処理 (複数列の削除)
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  ```Python
16
16
 
17
- df = df.drop(x_train.std()==0,axis=1)
17
+ df = df.drop(df.std()==0, axis=1)
18
18
 
19
19
  ```
20
20