Class: Google::Apis::BigqueryV2::CategoricalValue
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::CategoricalValue
- 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 categorical feature.
Instance Attribute Summary collapse
-
#category_counts ⇒ Array<Google::Apis::BigqueryV2::CategoryCount>
Counts of all categories for the categorical feature.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CategoricalValue
constructor
A new instance of CategoricalValue.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CategoricalValue
Returns a new instance of CategoricalValue.
1282 1283 1284 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1282 def initialize(**args) update!(**args) end |
Instance Attribute Details
#category_counts ⇒ Array<Google::Apis::BigqueryV2::CategoryCount>
Counts of all categories for the categorical feature. If there are more than
ten categories, we return top ten (by count) and return one more CategoryCount
with category "OTHER" and count as aggregate counts of remaining categories.
Corresponds to the JSON property categoryCounts
1280 1281 1282 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1280 def category_counts @category_counts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1287 1288 1289 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1287 def update!(**args) @category_counts = args[:category_counts] if args.key?(:category_counts) end |