Description Usage Arguments Details Value References Examples
The Statistical Hierachical Clusterer reference class cloner.
1 2 | ## S4 method for signature 'stream.SHC.clone'
initialize(old_shc)
|
old_shc |
(SHC object) - An SHC object instantiated from the SHC reference classes (both stream.SHC and stream.SHC.man). |
Performs cloning of the existing SHC object, instantiated from the SHC reference class.
Returns the cloned SHC object.
[1] Krleža D, Vrdoljak B, and Brčić M, Statistical hierarchical clustering algorithm for outlier detection in evolving data streams, Machine Learning, Sep. 2020
1 2 3 4 5 | s <- stream.SHC(2,driftType=DriftType$NoDrift,decaySpeed=0,sigmaIndex=TRUE)
res <- s$process(data.frame(X=c(1,2,3,34,5,3,2,2,3,34,150),Y=c(3,4,2,1,6,7,4,5,6,3,150)))
s$getHistogram()
s_cloned <- stream.SHC.clone(s)
s_cloned$getHistogram()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.