質問編集履歴
1
testに対して試したことを更新
test
CHANGED
File without changes
|
test
CHANGED
@@ -188,6 +188,10 @@
|
|
188
188
|
|
189
189
|
train['Age'] = train['Age'].apply(lambda x: '0' if x == '' else x)
|
190
190
|
|
191
|
+
test['Age'] = test['Age'].apply(lambda x: '0' if x == '' else x)
|
192
|
+
|
193
|
+
|
194
|
+
|
191
195
|
```
|
192
196
|
|
193
197
|
で補完しています。後は、特段の欠損は見られません。
|