Heart disease prediction done by using Personal Key Indicators of Heart Disease dataset with various machine learning algorithms.
$ python3 -m venv venv/
# Linux / MacOS
$ source venv/bin/activate
# Windows (Command Prompt)
$ venv\Scripts\activate
# Windows (Git Bash)
$ source venv/Scripts/activate
# Linux / MacOS
$ pip install -r requirements-mac.txt
# Windows
$ pip install -r requirements-win.txt
# Linux / MacOS
$ venv/bin/jupyter-lab --port=8888
# Windows (Command Prompt)
$ venv\Scripts\jupyter-lab
# Windows (Git Bash)
$ venv/Scripts/jupyter-lab
$ pip install <package>
$ pip freeze > requirements-mac.txt
$ pip freeze > requirements-win.txt