powered by
A data stream generator that produces a data stream with static (hyper) cubes filled uniformly with data points.
DSD_Cubes(k=2, d=2, center, size, p, noise = 0, noise_range)
Determines the number of clusters.
Determines the number of dimensions.
A matrix of means for each dimension of each cluster.
A k times d matrix with the cube dimensions.
k
d
A vector of probabilities that determines the likelihood of generated a data point from a particular cluster.
Noise probability between 0 and 1. Noise is uniformly distributed within noise range (see below).
A matrix with d rows and 2 columns. The first column contains the minimum values and the second column contains the maximum values for noise.
Returns a DSD_Cubes object (subclass of DSD_R, DSD).
DSD_Cubes
DSD_R
DSD
# NOT RUN { # create data stream with three clusters in 3D stream <- DSD_Cubes(k=3, d=3) # plotting the data plot(stream) # }
Run the code above in your browser using DataLab