Class: Google::Cloud::AutoML::V1beta1::CategoryStats

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/automl/v1beta1/data_stats.rb

Overview

The data statistics of a series of CATEGORY values.

Defined Under Namespace

Classes: SingleCategoryStats

Instance Attribute Summary collapse

Instance Attribute Details

#top_category_stats::Array<::Google::Cloud::AutoML::V1beta1::CategoryStats::SingleCategoryStats>

Returns The statistics of the top 20 CATEGORY values, ordered by

count.

Returns:



197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
# File 'proto_docs/google/cloud/automl/v1beta1/data_stats.rb', line 197

class CategoryStats
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The statistics of a single CATEGORY value.
  # @!attribute [rw] value
  #   @return [::String]
  #     The CATEGORY value.
  # @!attribute [rw] count
  #   @return [::Integer]
  #     The number of occurrences of this value in the series.
  class SingleCategoryStats
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end