Installation
Rust
Add augurs
to your Cargo.toml
. The library is modular, so you only need to enable the features you plan to use:
[dependencies]
augurs = { version = "0.6.0", features = [] }
Available features include:
forecaster
- High-level forecasting API with data transformationsets
- Exponential smoothing modelsmstl
- Multiple Seasonal-Trend decomposition using LOESSoutlier
- Outlier detection algorithmsclustering
- Time series clustering algorithmsdtw
- Dynamic Time Warping distance calculationsfull
- All featuresprophet
- Facebook Prophet forecasting modelprophet-cmdstan
- Prophet with cmdstan backendprophet-wasmstan
- Prophet with WebAssembly stan backendseasons
- Seasonality detection
For example, to use forecasting with ETS and MSTL:
[dependencies]
augurs = { version = "0.6.0", features = ["forecaster", "ets", "mstl"] }
Python
The Python bindings can be installed via pip:
pip install augurs
JavaScript Installation
The JavaScript bindings are available through npm:
npm install @bsull/augurs