Show / Hide Table of Contents

Class Cluster

Message containing the information about one cluster.

Inheritance
System.Object
Cluster
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 Cluster : IDirectResponseSchema

Properties

CentroidId

Centroid id.

Declaration
[JsonProperty("centroidId")]
public virtual long? CentroidId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Count

Count of training data rows that were assigned to this cluster.

Declaration
[JsonProperty("count")]
public virtual long? Count { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

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

FeatureValues

Values of highly variant features for this cluster.

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

Implements

IDirectResponseSchema
In This Article
Back to top