Class: Google::Apis::BigqueryV2::CategoryCount

Inherits:
Object
  • Object
show all
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

Represents the count of a single category within the cluster.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CategoryCount

Returns a new instance of CategoryCount.



1306
1307
1308
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1306

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

Instance Attribute Details

#categoryString

The name of category. Corresponds to the JSON property category

Returns:

  • (String)


1299
1300
1301
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1299

def category
  @category
end

#countFixnum

The count of training samples matching the category within the cluster. Corresponds to the JSON property count

Returns:

  • (Fixnum)


1304
1305
1306
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1304

def count
  @count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1311
1312
1313
1314
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1311

def update!(**args)
  @category = args[:category] if args.key?(:category)
  @count = args[:count] if args.key?(:count)
end