This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy | |
| import pandas | |
| import statsmodels.api as sm | |
| def custom_heuristic(file_path): | |
| ''' | |
| You are given a list of Titantic passengers and their associated | |
| information. More information about the data can be seen at the link below: | |
| http://www.kaggle.com/c/titanic-gettingStarted/data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy | |
| import pandas | |
| import statsmodels.api as sm | |
| def complex_heuristic(file_path): | |
| ''' | |
| You are given a list of Titantic passengers and their associated | |
| information. More information about the data can be seen at the link below: | |
| http://www.kaggle.com/c/titanic-gettingStarted/data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import numpy | |
| import pandas | |
| import statsmodels.api as sm | |
| def simple_heuristic(file_path): | |
| ''' | |
| In this exercise, we will perform some rudimentary practices similar to those of | |
| an actual data scientist. | |
| Part of a data scientist's job is to use her or his intuition and insight to |
NewerOlder