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
- Host: GitHub
- URL: https://github.com/robjhyndman/funtsibble
- Owner: robjhyndman
- Created: 2019-10-20T08:50:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-27T07:29:51.000Z (over 5 years ago)
- Last Synced: 2025-04-13T16:08:21.533Z (2 days ago)
- Language: R
- Size: 2.22 MB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
Awesome Lists containing this project
- jimsghstars - robjhyndman/funtsibble - R package for functional time series based on tsibbles (R)
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")
```
## ExampleThis 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()
```