An open API service indexing awesome lists of open source software.

https://github.com/geobosh/sarima

Time series modelling with extended regression SARIMA models
https://github.com/geobosh/sarima

arima kalman-filter r r-package reg-sarima sarima sarimax seasonal time-series xarima

Last synced: 6 months ago
JSON representation

Time series modelling with extended regression SARIMA models

Awesome Lists containing this project

README

          

[![CRANStatusBadge](http://www.r-pkg.org/badges/version/sarima)](https://cran.r-project.org/package=sarima)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/sarima)](https://www.r-pkg.org/pkg/sarima)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/sarima?color=blue)](https://r-pkg.org/pkg/sarima)
[![R-CMD-check](https://github.com/GeoBosh/sarima/workflows/R-CMD-check/badge.svg)](https://github.com/GeoBosh/sarima/actions)
[![Codecov test coverage](https://codecov.io/gh/GeoBosh/sarima/branch/master/graph/badge.svg)](https://app.codecov.io/gh/GeoBosh/sarima?branch=master)

'sarima' is an R package for time series modelling.

# Installing sarima

Install the [latest stable version](https://cran.r-project.org/package=sarima) of
`sarima` from CRAN:

install.packages("sarima")

You can install the [development version](https://github.com/GeoBosh/sarima) of
`sarima` from Github:

remotes::install_github("GeoBosh/sarima")

# Overview

Functions, classes and methods for time series modelling with ARIMA and related
models. The aim of the package is to provide consistent interface for the
user. For example, a single function autocorrelations() computes various kinds
of theoretical and sample autocorrelations. This is work in progress, see the
documentation and vignettes for the current functionality. Function sarima()
fits extended multiplicative seasonal ARIMA models with trends, exogenous
variables and arbitrary roots on the unit circle, which can be fixed or
estimated.

Reference manuals and vignettes are available as usual from running R
sessions. For example, this shows the available vignettes:

vignette(package = "sarima") # which vignettes are available?

These commands open the vignettes (the names are taken from the output of the
command above):

vignette("white_noise_tests", package = "sarima")
vignette("garch_tests_example", package = "sarima")

Alternatively, here are some links to online versions of the documentation:

- [sarima online reference manual](https://geobosh.github.io/sarima/)

- [sarima pdf reference manual on CRAN](https://CRAN.R-project.org/package=sarima/sarima.pdf)

- [vignette _Garch and white noise tests_ on CRAN](https://cran.r-project.org/package=sarima/vignettes/garch_tests_example.pdf)

- [vignette _Autocorrelations and white noise tests_ on CRAN](https://cran.r-project.org/package=sarima/vignettes/white_noise_tests.pdf)

The documentation is incomplete and some features are unfinished. Bug reports
and suggestions are welcome.