View source: R/cytosee_clustering.R
Finds a good fit to the data using k-means clustering algorithm. Then merges the adjacent dense spherical clusters to find non-spherical clusters.
1 2 3 4 |
object |
An object of |
varNames |
A character vector specifying the variables (columns) to be included in clustering. When it is left unspecified, all the variables will be used. |
MaxN |
Maximum number of clusters. If set to NA (default) the value will be estimated automatically. |
NumC |
Number of clusters. If set to NA (default) the value will be estimated automatically. |
iter.max |
The maximum number of iterations allowed. |
nstart |
The number of random sets used for initialization. |
Mahalanobis |
Boolean value. If TRUE (default) mahalanobis distance will be used. Otherwised, euclidean distance will be used. |
Standardize |
Boolean value. If TRUE (default) the data will be transformed to the [0,1] interval. |
Update |
String value. If set to "Mahalanobis" the distance function will be updated at each merging iteration with recalculating mahalanobis distances. If set to "Mean" the distance matrix will be updated after each merging step with averaging. If set to "None" the distance matrix will not be updated. |
OrthagonalResiduals |
Boolean value, indicates if the residuals must be transformed to orthagonal distance or not. |
MaxCovN |
Maximum number of points, used for calculating the covariance. If set to NA (default), all the points will be used. |
MaxKernN |
Maximum number of points, used for counting the modes using kernel density estimation. If set to NA (default), all the points will be used. |
addNoise |
Boolean value. Determines if uniform noise must be added to the data to prevent singularity issues or not. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.