A machine learning notebook on how predict which passengers survived the Titanic shipwreck
The notebook uses Python 3.8.6
The notebook uses Pipenv for dependency management, which can be installed by running
pip install pipenv
There are several other ways to install Pipenv. Please follow the official guide to see all possible options.
When inside the project directory, the dependencies can be installed by running
pipenv install
Alternatively, you can install them manually by running
pip install pandas scikit-learn matplotlib seaborn jupyterlab
The notebook can be launched either by running
pipenv run lab
or
jupyter lab src/main.ipynb
depending on how dependencies were installed.