powered by
Run MeanShift for clustering.
MEANSHIFT( d, kernel = "NORMAL", bandwidth = rep(1, ncol(d)), alpha = 0, iterations = 10, epsilon = 1e-08, epsilonCluster = 1e-04, ... )
The clustering (meanshift object).
meanshift
The dataset (matrix or data.frame).
matrix
data.frame
A string indicating the kernel associated with the kernel density estimate that the mean shift is optimizing over.
Used in the kernel density estimate for steepest ascent classification.
A scalar tuning parameter for normal kernels.
The number of iterations to perform mean shift.
A scalar used to determine when to terminate the iteration of a individual query point.
A scalar used to determine the minimum distance between distinct clusters.
Other parameters.
meanShift, predict.meanshift
meanShift
predict.meanshift
if (FALSE) { require (datasets) data (iris) MEANSHIFT (iris [, -5], bandwidth = .75) }
Run the code above in your browser using DataLab