/titanic-lesson

A machine learning notebook on how predict which passengers survived the Titanic shipwreck

Primary LanguageJupyter NotebookGNU General Public License v3.0GPL-3.0

titanicLesson

A machine learning notebook on how predict which passengers survived the Titanic shipwreck

Running locally

The notebook uses Python 3.8.6

Installing Pipenv

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.

Installing dependencies

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

Running notebook

The notebook can be launched either by running

pipenv run lab

or

jupyter lab src/main.ipynb

depending on how dependencies were installed.