Learn R Programming

jmotif (version 1.3.2)

find_discords_brute_force: Finds a discord using brute force algorithm.

Description

Finds a discord using brute force algorithm.

Usage

find_discords_brute_force(
  ts,
  w_size,
  discords_num,
  n_threshold = 0.01,
  seed = -1L
)

Arguments

ts

the input timeseries.

w_size

the sliding window size.

discords_num

the number of discords to report.

n_threshold

the z-normalization threshold.

seed

the random seed for the candidate visit order; a negative value (the default) leaves it non-reproducible, a non-negative value makes the search trajectory (and its distance-call count) reproducible. The reported discords are identical either way.

References

Keogh, E., Lin, J., Fu, A., HOT SAX: Efficiently finding the most unusual time series subsequence. Proceeding ICDM '05 Proceedings of the Fifth IEEE International Conference on Data Mining

Examples

Run this code
discords = find_discords_brute_force(ecg0606[1:600], 100, 1)
plot(ecg0606[1:600], type = "l", col = "cornflowerblue", main = "ECG 0606")
lines(x=c(discords[1,2]:(discords[1,2]+100)),
   y=ecg0606[discords[1,2]:(discords[1,2]+100)], col="red")

Run the code above in your browser using DataLab