This is the practical implementation for data preparation, modelling and visualisation of data that can be obtained from: https://drive.google.com/file/d/1qmfnSTE3LoFkyEgW5EOsEQJJm6SrvADg/view?usp=sharing
-
Prerequisites:
- Python 3.x installed on your system
virtualenv
orvenv
package (usually comes with Python 3.x)
-
Create a Virtual Environment:
-
Using
virtualenv
:virtualenv venv
-
Using
venv
(Python 3.3+):python -m venv venv
Replace
venv
with your preferred environment name. -
-
Activate the Virtual Environment:
-
On Windows:
venv\Scripts\activate
-
On macOS and Linux:
source venv/bin/activate
-
-
Install Packages from a Requirements File:
pip install -r requirements.txt
-
To start the jupyter notebook:
jupyter notebook
-
To deactivate the virtualenv:
deactivate