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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ FeatureValue

Returns a new instance of FeatureValue



1886
1887
1888
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1886

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



1873
1874
1875
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1873

def categorical_value
  @categorical_value
end

#feature_columnString

The feature column name. Corresponds to the JSON property featureColumn

Returns:

  • (String)


1878
1879
1880
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1878

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)


1884
1885
1886
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1884

def numerical_value
  @numerical_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1891
1892
1893
1894
1895
# File 'generated/google/apis/bigquery_v2/classes.rb', line 1891

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