An open API service indexing awesome lists of open source software.

https://github.com/avoss84/ts_sandbox

Time series sandbox
https://github.com/avoss84/ts_sandbox

time-series-analysis

Last synced: over 1 year ago
JSON representation

Time series sandbox

Awesome Lists containing this project

README

          

# Time series analysis sandbox

### Create virtual environment with required packages

```bash
curl -LsSf https://astral.sh/uv/install.sh | sh # get uv manager
# or from PyPi: pip install uv

uv venv ts_sandbox --python 3.12
source ts_sandbox/bin/activate

uv pip install -r requirements.txt
```