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

https://github.com/tidyverts/fabletools

General fable features useful for extension packages
https://github.com/tidyverts/fabletools

Last synced: 3 months ago
JSON representation

General fable features useful for extension packages

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# fabletools

[![R build status](https://github.com/tidyverts/fabletools/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/tidyverts/fabletools/actions/workflows/R-CMD-check.yaml)
[![Code test coverage](https://codecov.io/gh/tidyverts/fabletools/branch/master/graph/badge.svg)](https://app.codecov.io/gh/tidyverts/fabletools?branch=master)
[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html)
[![Licence](https://img.shields.io/badge/licence-GPL--3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)

The R package *fabletools* provides tools for building modelling packages, with a focus on time series forecasting. This package allows package developers to extend *fable* with additional models, without needing to depend on the models supported by *fable*.

## Installation

You could install the **stable** version on [CRAN](https://cran.r-project.org/package=fabletools):

```{r, eval = FALSE}
install.packages("fabletools")
```

You can install the **development** version from
[GitHub](https://github.com/tidyverts/fabletools):

```{r gh-installation, eval = FALSE}
# install.packages("remotes")
remotes::install_github("tidyverts/fabletools")
```