Skip to content

dkrleza/streamMOA

 
 

Repository files navigation

streamMOA - Interface for MOA Stream Clustering Algorithms - R package

CRAN version CRAN RStudio mirror downloads Travis-CI Build Status AppVeyor Build Status

Interface for data stream clustering algorithms implemented in the MOA (Massive Online Analysis) framework. This is an extension package for stream.

Installation

  • Stable CRAN version: install from within R.
  • Current development version: Download package from AppVeyor or install via install_git("mhahsler/streamMOA") (needs devtools)

Example

R> library("streamMOA")
# 3 clusters with 5% noise
R> stream <- DSD_Gaussians(k=3, d=2, noise=.05)
 
# cluster with CluStream  
R> clustream <- DSC_CluStream(m=50, k=3)
R> update(clustream, stream, 500)
R> clustream
CluStream + k-Means (weighted)
Class: DSC_TwoStage, DSC_Macro, DSC 
Number of micro-clusters: 50 
Number of macro-clusters: 3 
 
# plot micro-clusters
R> plot(clustream, stream, type = "both")

Further Information

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • R 95.1%
  • Java 3.6%
  • Makefile 1.3%