Class: Google::Apis::BigqueryV2::Cluster
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::Cluster
- 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
-
#centroid_id ⇒ Fixnum
Centroid id.
-
#count ⇒ Fixnum
Count of training data rows that were assigned to this cluster.
-
#feature_values ⇒ Array<Google::Apis::BigqueryV2::FeatureValue>
Values of highly variant features for this cluster.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Cluster
constructor
A new instance of Cluster.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Cluster
Returns a new instance of Cluster.
1260 1261 1262 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1260 def initialize(**args) update!(**args) end |
Instance Attribute Details
#centroid_id ⇒ Fixnum
Centroid id.
Corresponds to the JSON property centroidId
1248 1249 1250 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1248 def centroid_id @centroid_id end |
#count ⇒ Fixnum
Count of training data rows that were assigned to this cluster.
Corresponds to the JSON property count
1253 1254 1255 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1253 def count @count end |
#feature_values ⇒ Array<Google::Apis::BigqueryV2::FeatureValue>
Values of highly variant features for this cluster.
Corresponds to the JSON property featureValues
1258 1259 1260 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1258 def feature_values @feature_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1265 1266 1267 1268 1269 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1265 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 |