Name | traval JSON |
Version |
0.5.1
JSON |
| download |
home_page | None |
Summary | Python package for applying automatic error detection algorithms to time series. Create custom error detection algorithms to support data validation workflows. |
upload_time | 2024-09-27 08:25:36 |
maintainer | None |
docs_url | None |
author | D.A. Brakenhoff |
requires_python | >=3.9 |
license | None |
keywords |
hydrology
groundwater
time series
analysis
database
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
|
![traval](https://github.com/ArtesiaWater/traval/workflows/traval/badge.svg)
[![Documentation Status](https://readthedocs.org/projects/traval/badge/?version=latest)](https://traval.readthedocs.io/en/latest/?badge=latest)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d3e9ef5e30724b59a847093daeb6c233)](https://www.codacy.com/gh/ArtesiaWater/traval/dashboard?utm_source=github.com&utm_medium=referral&utm_content=ArtesiaWater/traval&utm_campaign=Badge_Grade)
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/d3e9ef5e30724b59a847093daeb6c233)](https://www.codacy.com/gh/ArtesiaWater/traval/dashboard?utm_source=github.com&utm_medium=referral&utm_content=ArtesiaWater/traval&utm_campaign=Badge_Coverage)
![PyPI](https://img.shields.io/pypi/v/traval)
# traval
Tools for applying automatic error detection algorithms to time series.
## Introduction
This module is set up to provide tools for applying any error detection
algorithm to any time series. The module consists of three main components:
- `RuleSet`: the RuleSet object is a highly flexible object for defining error
detection algorithms based on (user-defined) functions.
- `Detector`: a data management object for storing time series and error detection
results.
- `SeriesComparison*`: objects for comparing time series. These objects include plots
for visualizing the comparisons.
The general workflow consists of the following steps:
1. Define error detection algorithm(s).
2. Load data, i.e. raw time series data and optionally time series representing the
"truth" to see how well the algorithms perform.
3. Initialize Detector objects and apply algorithms to time series.
4. Store and analyze the results.
For more detailed information and examples, please refer to the notebooks in
the examples directory.
## Installation
To install the traval module, follow these steps:
1. Clone the repository from GitHub.
2. Open a terminal and navigate to the module root directory: `<your path here>/traval`
3. Type `pip install -e .`
## Usage
The basic usage of the module is described below. To start using the module,
import the package:
```python
import traval
```
The first step is generally to define an error detection algorithm. This is
done with the `RuleSet` object:
```python
ruleset = traval.RuleSet("my_first_algorithm")
```
Add a detection rule (using a general rule from the library contained within
the module). In this case the rule states any value above 10.0 is suspect:
```python
ruleset.add_rule(
"rule1",
traval.rulelib.rule_ufunc_threshold,
apply_to=0,
kwargs={"ufunc": (np.greater,), "threshold": 10.0}
)
```
Take a look at the ruleset by just typing `ruleset`:
```python
ruleset
```
```text
RuleSet: 'my_first_algorithm'
step: name apply_to
1: rule1 0
```
Next define a Detector object. This object is designed to store a time series
and the intermediate and final results after applying an error detection
algorithm. Initialize the Detector object with some time series. In this example
we assume there is a time series called `raw_series`:
```python
>>> detect = traval.Detector(raw_series)
```
Apply our first algorithm to the time series.
```python
>>> detect.apply_ruleset(ruleset)
```
By default, the result of each step in the algorithm is compared to the
original series and stored in the `detect.comparisons` attribute. Take a
look at the comparison between the raw data and the result of the error
detection algorithm.
Since we only defined one step, step 1 represents the final result.
```python
>>> cp = detect.comparisons[1] # result of step 1 = final result
```
The `SeriesComparison*` objects contain methods to visualize the comparison,
or summarize the number of observations in each category:
```python
>>> cp.plots.plot_series_comparison() # plot a comparison
>>> cp.summary # series containing number of observations in each category
```
For more detailed explanation and more complex examples, see the notebook(s)
in the examples directory.
## Author
- D.A. Brakenhoff, Artesia, 2020
Raw data
{
"_id": null,
"home_page": null,
"name": "traval",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "\"D.A. Brakenhoff\" <d.brakenhoff@artesia-water.nl>",
"keywords": "hydrology, groundwater, time series, analysis, database",
"author": "D.A. Brakenhoff",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/c5/e6/633d14b1c51637b88cd413ee99bab694c99dec302e934b1b32bf87d62b4a/traval-0.5.1.tar.gz",
"platform": null,
"description": "![traval](https://github.com/ArtesiaWater/traval/workflows/traval/badge.svg)\n[![Documentation Status](https://readthedocs.org/projects/traval/badge/?version=latest)](https://traval.readthedocs.io/en/latest/?badge=latest)\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/d3e9ef5e30724b59a847093daeb6c233)](https://www.codacy.com/gh/ArtesiaWater/traval/dashboard?utm_source=github.com&utm_medium=referral&utm_content=ArtesiaWater/traval&utm_campaign=Badge_Grade)\n[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/d3e9ef5e30724b59a847093daeb6c233)](https://www.codacy.com/gh/ArtesiaWater/traval/dashboard?utm_source=github.com&utm_medium=referral&utm_content=ArtesiaWater/traval&utm_campaign=Badge_Coverage)\n![PyPI](https://img.shields.io/pypi/v/traval)\n\n# traval\n\nTools for applying automatic error detection algorithms to time series.\n\n## Introduction\n\nThis module is set up to provide tools for applying any error detection\nalgorithm to any time series. The module consists of three main components:\n\n- `RuleSet`: the RuleSet object is a highly flexible object for defining error\n detection algorithms based on (user-defined) functions.\n- `Detector`: a data management object for storing time series and error detection\n results.\n- `SeriesComparison*`: objects for comparing time series. These objects include plots\n for visualizing the comparisons.\n\nThe general workflow consists of the following steps:\n\n1. Define error detection algorithm(s).\n2. Load data, i.e. raw time series data and optionally time series representing the\n \"truth\" to see how well the algorithms perform.\n3. Initialize Detector objects and apply algorithms to time series.\n4. Store and analyze the results.\n\nFor more detailed information and examples, please refer to the notebooks in\nthe examples directory.\n\n## Installation\n\nTo install the traval module, follow these steps:\n\n1. Clone the repository from GitHub.\n2. Open a terminal and navigate to the module root directory: `<your path here>/traval`\n3. Type `pip install -e .`\n\n## Usage\n\nThe basic usage of the module is described below. To start using the module,\nimport the package:\n\n```python\nimport traval\n```\n\nThe first step is generally to define an error detection algorithm. This is\ndone with the `RuleSet` object:\n\n```python\nruleset = traval.RuleSet(\"my_first_algorithm\")\n```\n\nAdd a detection rule (using a general rule from the library contained within\nthe module). In this case the rule states any value above 10.0 is suspect:\n\n```python\nruleset.add_rule(\n \"rule1\",\n traval.rulelib.rule_ufunc_threshold,\n apply_to=0,\n kwargs={\"ufunc\": (np.greater,), \"threshold\": 10.0}\n)\n```\n\nTake a look at the ruleset by just typing `ruleset`:\n\n```python\nruleset\n```\n\n```text\nRuleSet: 'my_first_algorithm'\n step: name apply_to\n 1: rule1 0\n```\n\nNext define a Detector object. This object is designed to store a time series\nand the intermediate and final results after applying an error detection\nalgorithm. Initialize the Detector object with some time series. In this example\nwe assume there is a time series called `raw_series`:\n\n```python\n>>> detect = traval.Detector(raw_series)\n```\n\nApply our first algorithm to the time series.\n\n```python\n>>> detect.apply_ruleset(ruleset)\n```\n\nBy default, the result of each step in the algorithm is compared to the\noriginal series and stored in the `detect.comparisons` attribute. Take a\nlook at the comparison between the raw data and the result of the error\ndetection algorithm.\n\nSince we only defined one step, step 1 represents the final result.\n\n```python\n>>> cp = detect.comparisons[1] # result of step 1 = final result\n```\n\nThe `SeriesComparison*` objects contain methods to visualize the comparison,\nor summarize the number of observations in each category:\n\n```python\n>>> cp.plots.plot_series_comparison() # plot a comparison\n>>> cp.summary # series containing number of observations in each category\n```\n\nFor more detailed explanation and more complex examples, see the notebook(s)\nin the examples directory.\n\n## Author\n\n- D.A. Brakenhoff, Artesia, 2020\n",
"bugtrack_url": null,
"license": null,
"summary": "Python package for applying automatic error detection algorithms to time series. Create custom error detection algorithms to support data validation workflows.",
"version": "0.5.1",
"project_urls": {
"documentation": "https://traval.readthedocs.io/en/latest/",
"homepage": "https://github.com/ArtesiaWater/traval",
"repository": "https://github.com/ArtesiaWater/traval"
},
"split_keywords": [
"hydrology",
" groundwater",
" time series",
" analysis",
" database"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "11d24a0a60386c5f129381fb61cad62a96aca8e359f97e94c5a7b143af40fb49",
"md5": "b0c54db652253f494f86c51b7bffc086",
"sha256": "f774105706241d0ea2fcd06a7112c2d4bab0562b36b9fe1ca93bc3c070067897"
},
"downloads": -1,
"filename": "traval-0.5.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b0c54db652253f494f86c51b7bffc086",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 38890,
"upload_time": "2024-09-27T08:25:34",
"upload_time_iso_8601": "2024-09-27T08:25:34.443520Z",
"url": "https://files.pythonhosted.org/packages/11/d2/4a0a60386c5f129381fb61cad62a96aca8e359f97e94c5a7b143af40fb49/traval-0.5.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5e6633d14b1c51637b88cd413ee99bab694c99dec302e934b1b32bf87d62b4a",
"md5": "93ab8011336cf1b7d7278e76dcfc6bd3",
"sha256": "322a36629e6a31ffdd0a0ba22a1e900d2881511a8a830f8e966120abbfe2c411"
},
"downloads": -1,
"filename": "traval-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "93ab8011336cf1b7d7278e76dcfc6bd3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 42341,
"upload_time": "2024-09-27T08:25:36",
"upload_time_iso_8601": "2024-09-27T08:25:36.005840Z",
"url": "https://files.pythonhosted.org/packages/c5/e6/633d14b1c51637b88cd413ee99bab694c99dec302e934b1b32bf87d62b4a/traval-0.5.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-09-27 08:25:36",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "ArtesiaWater",
"github_project": "traval",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "traval"
}