detectEvent: Detect Rare Events

Description Usage Arguments Value Author(s) Examples

Description

Adds new data to a model and detects rare events

Usage

1
detectEvent(JEMM, newdata, measure = "Cosine", threshold = 0.2)

Arguments

JEMM

The EMM model to detect rare events for

newdata

The data that you want to add

measure

The clustering algorithm

threshold

The threshold for the clustering algorithm

Value

Prints out the rare states

Author(s)

Benjamin Koopferstock

Examples

1
2
3
4
5
6
library(RJEMM)
data(anomaly)
emm <- create_EMM(measure = "Dice", threshold = 0.3 )
build( emm, anomaly)
data(anomalyRare)
detectEvent(emm, anomalyRare, "Dice")

RJEMM documentation built on May 2, 2019, 6:17 p.m.

Related to detectEvent in RJEMM...