ClusteringMetrics constructor

ClusteringMetrics({
  1. List<Cluster>? clusters,
  2. double? daviesBouldinIndex,
  3. double? meanSquaredDistance,
})

Implementation

ClusteringMetrics({
  this.clusters,
  this.daviesBouldinIndex,
  this.meanSquaredDistance,
});