create intuitive pages that contain informative visualizations of the provided data for a statistical analysis.
The file data.csv contains an example data set that has been artificially generated. The set consists of 400 samples where for each sample there are 10 different sensor readings available. The samples have been divided into two classes where the class label is either 1 or -1.
backend application is implemented in python using:
- Flask web app framework https://flask.palletsprojects.com/en/1.1.x/
- Jinja2 templating engine https://jinja.palletsprojects.com/en/2.10.x/
frontend application is implemented in ReactJS.
Using Python 3.6.7
- Create a virtualenv "venv" with 'python3 -m venv venv'. If you do not have virtualenv python package installed, follow the installation manual: https://virtualenv.pypa.io/en/stable/installation/
- Activate it with '. venv/bin/activate'
- Install the requirements with 'pip install -r requirements.txt'
- Run the application with 'python3 -m main'