Class: Google::Apis::BigqueryV2::FeatureValue
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::FeatureValue
- 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
Representative value of a single feature within the cluster.
Instance Attribute Summary collapse
-
#categorical_value ⇒ Google::Apis::BigqueryV2::CategoricalValue
Representative value of a categorical feature.
-
#feature_column ⇒ String
The feature column name.
-
#numerical_value ⇒ Float
The numerical feature value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FeatureValue
constructor
A new instance of FeatureValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FeatureValue
Returns a new instance of FeatureValue.
3346 3347 3348 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3346 def initialize(**args) update!(**args) end |
Instance Attribute Details
#categorical_value ⇒ Google::Apis::BigqueryV2::CategoricalValue
Representative value of a categorical feature.
Corresponds to the JSON property categoricalValue
3334 3335 3336 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3334 def categorical_value @categorical_value end |
#feature_column ⇒ String
The feature column name.
Corresponds to the JSON property featureColumn
3339 3340 3341 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3339 def feature_column @feature_column end |
#numerical_value ⇒ Float
The numerical feature value. This is the centroid value for this feature.
Corresponds to the JSON property numericalValue
3344 3345 3346 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3344 def numerical_value @numerical_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3351 3352 3353 3354 3355 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 3351 def update!(**args) @categorical_value = args[:categorical_value] if args.key?(:categorical_value) @feature_column = args[:feature_column] if args.key?(:feature_column) @numerical_value = args[:numerical_value] if args.key?(:numerical_value) end |