create_EMM: Create an EMM Object

Description Usage Arguments Value Author(s) Examples

Description

create_EMM creates an EMM model using the supplied threshold and clustering algorithm. Choices for the clustering algorithm are "Cosine", "Dice", "Euclidean", "Jaccard", and "Overlap". It can also be used to load an existing EMM model if the location variable is set to the location of the saved model.

Usage

1
create_EMM(measure = "Cosine", threshold = 0.2, location = "")

Arguments

measure

measure for clustering

threshold

threshold for clustering

location

if a saved model should be loaded, put the location here

Value

Returns a JREMM object

Author(s)

Benjamin Koopferstock

Examples

1
2
3
4
5
6
7
   library(RJEMM)
   emm <- create_EMM(measure = "Dice", threshold = 0.5, )
   data(anomaly)
   build( emm, anomaly)
   displayStates(emm)
   displayLinks(emm)
   display(emm)

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

Related to create_EMM in RJEMM...