find_chains {tsmp}R Documentation

Find Time Series Chains

Description

Time Series Chains is a new primitive for time series data mining.

Usage

find_chains(.mp)

Arguments

.mp

a MatrixProfile object.

Value

Returns the input .mp object with a new name chain. It contains: chains, a list of chains found with more than 2 patterns and best with the best one.

References

Website: https://sites.google.com/site/timeserieschain/

Examples

w <- 50
data <- mp_gait_data
mp <- tsmp(data, window_size = w, exclusion_zone = 1 / 4, verbose = 0)
mp <- find_chains(mp)

[Package tsmp version 0.4.15 Index]