forked from robjhyndman/tsfeatures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
59 lines (44 loc) · 1.59 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
output: github_document
editor_options:
chunk_output_type: console
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
cache = TRUE,
message = FALSE,
warning = FALSE
)
```
# tsfeatures
<!-- badges: start -->
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/tsfeatures)](https://cran.r-project.org/package=tsfeatures)
[![Downloads](http://cranlogs.r-pkg.org/badges/tsfeatures)](https://cran.r-project.org/package=tsfeatures)
[![Licence](https://img.shields.io/badge/licence-GPL--3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0.en.html)
[![R build status](https://github.com/robjhyndman/tsfeatures/workflows/R-CMD-check/badge.svg)](https://github.com/robjhyndman/tsfeatures/actions)
<!-- badges: end -->
The R package *tsfeatures* provides methods for extracting various features from time series data.
## Installation
You can install the **stable** version on [R
CRAN](https://cran.r-project.org/package=tsfeatures).
``` r
install.packages('tsfeatures', dependencies = TRUE)
```
You can install the **development** version from [Github](https://github.com/robjhyndman/tsfeatures) with:
```{r gh-installation, eval = FALSE}
# install.packages("devtools")
devtools::install_github("robjhyndman/tsfeatures")
```
## Usage
```{r}
library(tsfeatures)
mylist <- list(sunspot.year, WWWusage, AirPassengers, USAccDeaths)
myfeatures <- tsfeatures(mylist)
myfeatures
```
## License
This package is free and open source software, licensed under GPL-3.