Data stream task is responsible for the data analysis task which can be performed using streaming data. Clustering, Classification and Pattern Matching algorithm are implemented as data stream task classes. Our focus for this chapter is only clustering algorithms.
Data stream clustering is implemented as a part of the data stream task (DST) in the stream package. It is called a DSC class. DSC_R is a native R implementation of the clustering algorithms. DSC_MOA provides an interface to algorithms implemented in the MOA Java framework. In this chapter, we will be only looking at DSC_R, the native R algorithms.
The DSC classes ...