# 3 clusters with 5% noise
stream <- DSD_Gaussians(k = 3, d = 2, noise = 0.05)
# Use a moving window for "micro-clusters and recluster with DBSCAN (macro-clusters)
cl <- DSC_TwoStage(
micro = DSC_Window(horizon = 100),
macro = DSC_DBSCAN(eps = .05)
)
update(cl, stream, 500)
cl
plot(cl, stream)
Run the code above in your browser using DataLab