Class: Google::Apis::BigqueryV2::Cluster

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb

Overview

Message containing the information about one cluster.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Cluster

Returns a new instance of Cluster.



1310
1311
1312
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1310

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#centroid_idFixnum

Centroid id. Corresponds to the JSON property centroidId

Returns:

  • (Fixnum)


1298
1299
1300
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1298

def centroid_id
  @centroid_id
end

#countFixnum

Count of training data rows that were assigned to this cluster. Corresponds to the JSON property count

Returns:

  • (Fixnum)


1303
1304
1305
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1303

def count
  @count
end

#feature_valuesArray<Google::Apis::BigqueryV2::FeatureValue>

Values of highly variant features for this cluster. Corresponds to the JSON property featureValues



1308
1309
1310
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1308

def feature_values
  @feature_values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1315
1316
1317
1318
1319
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1315

def update!(**args)
  @centroid_id = args[:centroid_id] if args.key?(:centroid_id)
  @count = args[:count] if args.key?(:count)
  @feature_values = args[:feature_values] if args.key?(:feature_values)
end