Creates an Increase-Decrease-Stable model for trend detection.

IDSModel(threshold = 0, window_size = 3L)

Arguments

threshold

Threshold for trend detection (default: 0.0)

window_size

Window size for trend calculation (default: 3)

Value

An IDSModel object

Examples

if (FALSE) { # \dontrun{
model <- IDSModel()
model <- IDSModel(threshold = 0.1, window_size = 5)
} # }