Chapter 3: Exercise 3 "Using Titanic dataset" Solution
Open
- Dominant language
- Jupyter Notebook
- Stars
- 30k
- Forks
- 13.1k
- PR merge metrics
- No merged PRs in 30d
Description
'Survived' should be dropped before fitting the model, therefore adding:
`train_data = train_data.drop('Survived', axis=1)` or
`train_data.drop('Survived', axis=1, inplace=True)`
before Pipeline transformations.
This would be very helpful for newbies.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.