GapEvaluation
statistics: GapEvaluation
A gap object to evaluate clustering solutions.
A GapEvaluation object is a ClusterCriterion
object used to evaluate clustering solutions using the gap criterion,
which is a mathematical formalization of the elbow method.
List of public properties specific to SilhouetteEvaluation:
Bthe number of reference datasets to generate.
Distance a valid distance metric name, or a function handle as accepted by the
pdist function.
ExpectedLogWa vector of the expected values for the logarithm of the within clusters dispersion.
LogWa vector of the values of the logarithm of the within clusters dispersion.
ReferenceDistribution a valid name for the reference distribution, namely: PCA (default)
or uniform.
SEa vector of the standard error of the expected values for the logarithm of the within clusters dispersion.
SearchMethod a valid name for the search method to use: globalMaxSE (default) or
firstMaxSE.
StdLogWa vector of the standard deviation of the expected values for the logarithm of the within clusters dispersion.
The best solution according to the gap criterion depends on the chosen
search method. When the search method is globalMaxSE, the chosen
gap value is the smaller one which is inside a standard error from the
max gap value; when the search method is firstMaxSE, the chosen
gap value is the first one which is inside a standard error from the next
gap value.
See also: evalclusters, ClusterCriterion, CalinskiHarabaszEvaluation, DaviesBouldinEvaluation, SilhouetteEvaluation
Source Code: GapEvaluation
GapEvaluation.B is not documented.
GapEvaluation.Distance is not documented.
GapEvaluation.ReferenceDistribution is not documented.
GapEvaluation.SearchMethod is not documented.
GapEvaluation.ExpectedLogW is not documented.
GapEvaluation.LogW is not documented.
GapEvaluation.SE is not documented.
GapEvaluation.StdLogW is not documented.
GapEvaluation: obj = addK (obj, K)
ClusterCriterion: plot (obj)
ClusterCriterion: h = plot (obj)
Plot the CriterionValues against InspectedK from the GapEvaluation ClusterCriterion, obj, and show the standard deviation to the current plot. It can also return a handle to the current plot.
GapEvaluation: obj = compact (obj)