Class: Google::Apis::BigqueryV2::FeatureValue

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

Overview

Representative value of a single feature within the cluster.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FeatureValue

Returns a new instance of FeatureValue.



2301
2302
2303
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2301

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

Instance Attribute Details

#categorical_valueGoogle::Apis::BigqueryV2::CategoricalValue

Representative value of a categorical feature. Corresponds to the JSON property categoricalValue



2289
2290
2291
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2289

def categorical_value
  @categorical_value
end

#feature_columnString

The feature column name. Corresponds to the JSON property featureColumn

Returns:

  • (String)


2294
2295
2296
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2294

def feature_column
  @feature_column
end

#numerical_valueFloat

The numerical feature value. This is the centroid value for this feature. Corresponds to the JSON property numericalValue

Returns:

  • (Float)


2299
2300
2301
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2299

def numerical_value
  @numerical_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2306
2307
2308
2309
2310
# File 'generated/google/apis/bigquery_v2/classes.rb', line 2306

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