Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
toarstats
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esde
toar-public
toarstats
Commits
39e150db
Commit
39e150db
authored
2 years ago
by
Niklas Selke
Browse files
Options
Downloads
Patches
Plain Diff
Adapted the README.md to the new package layout.
parent
48e2ef2e
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!5
Modified the test for the 'value_count' statistic. Now all available sampling...
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+15
-8
15 additions, 8 deletions
README.md
with
15 additions
and
8 deletions
README.md
+
15
−
8
View file @
39e150db
# toarstats
This repository contains a collection of statistics that can be
calculated on
**hourly**
data. The statistics in the
`ozone_metrics.py`
file are specific to ozone data. The statistics in the
`stats.py`
file
can be calculated for other variables as well.
This repository contains a collection of statistical tools for the
analysis of time series data. It is split into two subpackages:
-
metrics: collection of statistics and metrics to calculate on
**hourly**
time series data (some specific to ozone
measurements)
-
trends: calculate quantile regression on time series data
## Installation
...
...
@@ -14,15 +16,20 @@ python3 -m pip install toarstats-<version>-py3-none-any.whl
```
It is advised to set up a virtual environment beforehand.
## Usage
## metrics
This subpackage contains a collection of statistics that can be
calculated on
**hourly**
data. The statistics in the
`ozone_metrics.py`
file are specific to ozone data. The statistics in the
`stats.py`
file
can be calculated for other variables as well.
### Import
To use the package import
`calculate_statistics`
with:
```
from toarstats import calculate_statistics # or
from toarstats import * # or
import toarstats
from toarstats
.metrics
import calculate_statistics # or
from toarstats
.metrics
import * # or
import toarstats
.metrics
```
### Interface
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment