Show / Hide Table of Contents

Class ClusteringMetrics

Evaluation metrics for clustering models.

Inheritance
System.Object
ClusteringMetrics
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ClusteringMetrics : IDirectResponseSchema

Properties

Clusters

Information for all clusters.

Declaration
[JsonProperty("clusters")]
public virtual IList<Cluster> Clusters { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Cluster>

DaviesBouldinIndex

Davies-Bouldin index.

Declaration
[JsonProperty("daviesBouldinIndex")]
public virtual double? DaviesBouldinIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

MeanSquaredDistance

Mean of squared distances between each sample to its cluster centroid.

Declaration
[JsonProperty("meanSquaredDistance")]
public virtual double? MeanSquaredDistance { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

IDirectResponseSchema
In This Article
Back to top