https://github.com/apozzi/harima
Harima is a Haskell library designed for time series analysis and forecasting using the ARIMA (AutoRegressive Integrated Moving Average) model.
https://github.com/apozzi/harima
arima-forecasting arima-model haskell haskell-library
Last synced: 4 months ago
JSON representation
Harima is a Haskell library designed for time series analysis and forecasting using the ARIMA (AutoRegressive Integrated Moving Average) model.
- Host: GitHub
- URL: https://github.com/apozzi/harima
- Owner: Apozzi
- License: gpl-3.0
- Created: 2024-06-27T13:43:39.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-11-08T21:13:53.000Z (7 months ago)
- Last Synced: 2025-01-04T20:45:05.308Z (5 months ago)
- Topics: arima-forecasting, arima-model, haskell, haskell-library
- Language: Haskell
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Harima
`Harima` is a Haskell library designed for time series analysis and forecasting using the ARIMA (AutoRegressive Integrated Moving Average) model for Haskell.
## Features
- ARIMA Model Implementation
- Model Fitting
- Diagnostic Tools TODO
- Forecasting TODO
- Visualization TODO
- Seasonality Handling TODO## Installation
To install `harima`, you can add it to your project's dependencies in the `cabal` or `stack` configuration file:
```haskell
-- In cabal file
build-depends:
harima == 0.1.0-- In stack file
extra-deps:
- harima-0.1.0