All Projects → robjhyndman → Tsfeatures

robjhyndman / Tsfeatures

Licence: other
Time series features

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Tsfeatures

Deltapy
DeltaPy - Tabular Data Augmentation (by @firmai)
Stars: ✭ 344 (+69.46%)
Mutual labels:  time-series, feature-extraction
Tsfel
An intuitive library to extract features from time series
Stars: ✭ 202 (-0.49%)
Mutual labels:  time-series, feature-extraction
Hctsa
Highly comparative time-series analysis
Stars: ✭ 406 (+100%)
Mutual labels:  time-series, feature-extraction
time-series-classification
Classifying time series using feature extraction
Stars: ✭ 75 (-63.05%)
Mutual labels:  time-series, feature-extraction
Tsfresh
Automatic extraction of relevant features from time series:
Stars: ✭ 6,077 (+2893.6%)
Mutual labels:  time-series, feature-extraction
Collapse
Advanced and Fast Data Transformation in R
Stars: ✭ 184 (-9.36%)
Mutual labels:  time-series
Modeltime
Modeltime unlocks time series forecast models and machine learning in one framework
Stars: ✭ 189 (-6.9%)
Mutual labels:  time-series
Lstm anomaly thesis
Anomaly detection for temporal data using LSTMs
Stars: ✭ 178 (-12.32%)
Mutual labels:  time-series
Introduction To Time Series Forecasting Python
Introduction to time series preprocessing and forecasting in Python using AR, MA, ARMA, ARIMA, SARIMA and Prophet model with forecast evaluation.
Stars: ✭ 173 (-14.78%)
Mutual labels:  time-series
Taganomaly
Anomaly detection analysis and labeling tool, specifically for multiple time series (one time series per category)
Stars: ✭ 200 (-1.48%)
Mutual labels:  time-series
Auto ts
Automatically build ARIMA, SARIMAX, VAR, FB Prophet and XGBoost Models on Time Series data sets with a Single Line of Code. Now updated with Dask to handle millions of rows.
Stars: ✭ 195 (-3.94%)
Mutual labels:  time-series
Flot Downsample
Downsample plugin for Flot charts.
Stars: ✭ 186 (-8.37%)
Mutual labels:  time-series
Plotjuggler
The Time Series Visualization Tool that you deserve.
Stars: ✭ 2,620 (+1190.64%)
Mutual labels:  time-series
Apkfile
Android app analysis and feature extraction library
Stars: ✭ 190 (-6.4%)
Mutual labels:  feature-extraction
Tsaug
A Python package for time series augmentation
Stars: ✭ 180 (-11.33%)
Mutual labels:  time-series
Variational Ladder Autoencoder
Implementation of VLAE
Stars: ✭ 196 (-3.45%)
Mutual labels:  feature-extraction
Tibbletime
Time-aware tibbles
Stars: ✭ 175 (-13.79%)
Mutual labels:  time-series
Choochoo
Training Diary
Stars: ✭ 186 (-8.37%)
Mutual labels:  time-series
Mintpy
Miami InSAR time-series software in Python
Stars: ✭ 195 (-3.94%)
Mutual labels:  time-series
Dtwclust
R Package for Time Series Clustering Along with Optimizations for DTW
Stars: ✭ 185 (-8.87%)
Mutual labels:  time-series

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 x 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.989 2.12e-8     11.0       1.10  0.552
#> 4        12        1              12 0.796 9.67e-7     -2.13      2.85  0.250
#> # … with 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].