weco.combine: Combination of WECO Rules

Description Usage Arguments Value Examples

Description

Apply a combination of multiple WECO rules to continuously observed data from some process to detect abnormal signals

Usage

1
weco.combine(x, sdx = sd(x), mux = mean(x), lst.rules)

Arguments

x

A vector of continuously observed data from some process

sdx

Standard deviation of the observed data

mux

Mean of the observed data

lst.rules

List of rules with parameters. The first element in the list is the rule number

Value

A vector with the same length as x that contains the out of boundary status of each point

Examples

1
2
3
x         <- rnorm(1000);
rst.comb  <- weco.combine(x, lst.rules=list(list(1), list(2, k=9)));
rst.comb2 <- weco.combine(x, lst.rules=list(list(3), list(4, k=16)));

weco documentation built on May 2, 2019, 3:46 p.m.