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

https://github.com/robjhyndman/funtsibble

R package for functional time series based on tsibbles
https://github.com/robjhyndman/funtsibble

Last synced: 2 days ago
JSON representation

R package for functional time series based on tsibbles

Awesome Lists containing this project

README

        

---
output: github_document
---

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

# funtsibble

The goal of funtsibble is to allow analysis of functional time series data using tidy tools.

## Installation

You can install the development version of funtsibble from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("robjhyndman/funtsibble")
```
## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(funtsibble)
```

```{r fr.mort, message=FALSE}
demography::fr.mort %>% as_tsibble()
```