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.
2798 2799 2800 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2798 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
2786 2787 2788 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2786 def categorical_value @categorical_value end |
#feature_column ⇒ String
The feature column name.
Corresponds to the JSON property featureColumn
2791 2792 2793 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2791 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
2796 2797 2798 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2796 def numerical_value @numerical_value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2803 2804 2805 2806 2807 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2803 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 |