Base code to evaluate Tangara's sensors by comparing them through a time series, identifying missing data, detecting outliers, and assessing offline sensors.
- Python 3.8+
- Poetry 1.7+
Please read and execute each step below:
Add Poetry to your PATH:
$promt> export PATH="$HOME/.local/bin:$PATH"
Also you can add Poetry to your .bashrc file:
$promt> nano ~/.bashrc
Install poetry by script:
$promt> ./install-poetry.sh
Command to tell Poetry which Python version to use for the current project:
$promt> poetry env use 3.12
Activating the virtual environment:
$promt> poetry shell
Installing dependencies:
$(tangara-evaluation-py3.12)> poetry install --no-root
Displaying the environment information:
$promt> poetry env info
Adds required packages to your pyproject.toml and installs them:
$promt> poetry add jupyter
Deactivate the virtual environment and exit:
$(tangara-superset-py3.12)> exit
# To deactivate the virtual environment without leaving the shell use deactivate
$(tangara-superset-py3.12)> deactivate
A base code was created inside the folder src please check out the README.md file.
That's all for now ...