回答編集履歴

1

念のため

2019/11/06 20:19

投稿

hayataka2049
hayataka2049

スコア30933

test CHANGED
@@ -8,6 +8,18 @@
8
8
 
9
9
  ```python
10
10
 
11
+ hoge_array = np.array([hoge_df['a'].tolist(),
12
+
13
+ hoge_df['b'].tolist(),
14
+
15
+ hoge_df['c'].tolist()
16
+
17
+ ], np.float)
18
+
19
+
20
+
21
+ stdsc = StandardScaler()
22
+
11
23
  hoge_array = stdsc.fit_transform(hoge_array.T)
12
24
 
13
25
  ```