a b/Readme.md
1
# Sensors and Wearables for Automated Detection of Nutrition, Physical Activity, and Sleep
2
3
## Overview
4
- `analytics` collection of notebooks for data analytics
5
- `data` dataset of csv files from supersapiens and garmin
6
7
## Getting started
8
9
Create python virtual environment
10
```
11
python -m venv .venv
12
```
13
14
Activate python virtual environment
15
```
16
# Linux / MacOS
17
source .venv/bin/activate
18
19
# Windows
20
.venv\Scripts\activate.bat
21
```
22
23
Install dependencies
24
```
25
pip install -r requirements.txt
26
```
27
28
Run notebook
29
```
30
jupyter notebook
31
```