stompi_update {tsmp} | R Documentation |
Real-time STOMP algorithm
Description
Real-time STOMP algorithm
Usage
stompi_update(.mp, new_data, history_size = FALSE)
Arguments
.mp |
a TSMP object of class |
new_data |
new data to append to original data. |
history_size |
an |
Value
Returns the input .mp
updated with the new information.
Examples
mp <- tsmp(mp_toy_data$data[1:200, 1], window_size = 30, verbose = 0)
mpi <- stompi_update(mp, mp_toy_data$data[201:300, 1])
mp <- tsmp(mp_toy_data$data[1:300, 1], window_size = 30, verbose = 0)
all.equal(mp, mpi, check.attributes = FALSE)
[Package tsmp version 0.4.15 Index]