質問編集履歴
1
誤字
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(
|
17
|
+
df = df.drop(df.std()==0, axis=1)
|
18
18
|
|
19
19
|
```
|
20
20
|
|