Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliaaplavin/directionalstatistics.jl
https://github.com/juliaaplavin/directionalstatistics.jl
circular-statistics directional-statistics statistics
Last synced: about 10 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/juliaaplavin/directionalstatistics.jl
- Owner: JuliaAPlavin
- License: mit
- Created: 2024-02-18T17:56:37.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-10-13T12:57:03.000Z (3 months ago)
- Last Synced: 2024-11-19T05:59:52.748Z (2 months ago)
- Topics: circular-statistics, directional-statistics, statistics
- Language: Julia
- Homepage:
- Size: 61.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Overview
Directional statistics package for Julia. Currently includes several circular and spatial descriptive statistics, see reference below for details.
# Usage
Package contains submodules, and many functions are indended to be qualified on call. This lets us use names such as `mean()` and still have no conflicts with functions in `Statistics` or `StatsBase`.
```
using DirectionalStatisticsCircular.mean(...)
```All circular statistics operate in a 2π range by default, that corresponds to the natural range of angles. Arbitrary ranges are supported and can be specified as an interval:
```
using IntervalSetsCircular.mean(array, 0..π)
Circular.mean(array, -180..+180)
```