GitXplorerGitXplorer
r

tsfeatures

public
254 stars
43 forks
2 issues

Commits

List of commits on branch master.
Unverified
dfaff350918c4455cd31edd9e57a4429a9f791fc

Fixed equation

rrobjhyndman committed 6 months ago
Unverified
f79d99dd0711502a5d9185d7e7633f7f2e47a8db

Increment version number to 1.1.1.9000

rrobjhyndman committed a year ago
Unverified
24aab39222f7752969b8dddf0b47478de4e05d5d

Submitted again

rrobjhyndman committed a year ago
Unverified
892a4d46b629549abc50e88a13035b3aecbd26b6

improved pkgdown reference

rrobjhyndman committed a year ago
Unverified
6aa2edff155f6e26d86dc10dd277188a4ec726c8

Updated intro vignette

rrobjhyndman committed a year ago
Unverified
1cd7da7a0d5953cc609933269ac7e286f58f2a2a

Fixed some docs

rrobjhyndman committed a year ago

README

The README file for this repository.

tsfeatures

CRAN_Status_Badge Downloads Licence R build status

The R package tsfeatures provides methods for extracting various features from time series data.

Installation

You can install the stable version on R CRAN.

install.packages('tsfeatures', dependencies = TRUE)

You can install the development version from Github with:

# install.packages("devtools")
devtools::install_github("robjhyndman/tsfeatures")

Usage

library(tsfeatures)
mylist <- list(sunspot.year, WWWusage, AirPassengers, USAccDeaths)
myfeatures <- tsfeatures(mylist)
myfeatures
#> # A tibble: 4 × 20
#>   frequency nperiods seasonal_period trend      spike linearity curvature e_acf1
#>       <dbl>    <dbl>           <dbl> <dbl>      <dbl>     <dbl>     <dbl>  <dbl>
#> 1         1        0               1 0.125    2.10e-5      3.58      1.11  0.793
#> 2         1        0               1 0.985    3.01e-8      4.45      1.10  0.774
#> 3        12        1              12 0.991    1.46e-8     11.0       1.09  0.509
#> 4        12        1              12 0.802    9.15e-7     -2.12      2.85  0.258
#> # ℹ 12 more variables: e_acf10 <dbl>, entropy <dbl>, x_acf1 <dbl>,
#> #   x_acf10 <dbl>, diff1_acf1 <dbl>, diff1_acf10 <dbl>, diff2_acf1 <dbl>,
#> #   diff2_acf10 <dbl>, seasonal_strength <dbl>, peak <dbl>, trough <dbl>,
#> #   seas_acf1 <dbl>

License

This package is free and open source software, licensed under GPL-3.