Mathematica has different related functions to perform clustering including ClusterClassify[] and FindClusters[]. Is it possible to obtain the value of its CriterionFunction?
As a simple example:
data = ExampleData[{"MachineLearning", "FisherIris"}, "Data"];
X = data[[All, 1]];
c = ClusterClassify[X, Method -> "NeighborhoodContraction", CriterionFunction -> "Silhouette"];
I would like to obtain the internal index corresponding to the CriterionFunction used in this case, which is the Silhouette coefficient.
Thanks in advance for any help!