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

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/automl/v1beta1/doc/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_statsArray<Google::Cloud::AutoML::V1beta1::CategoryStats::SingleCategoryStats>

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

count.

Returns:



139
140
141
142
143
144
145
146
147
148
# File 'lib/google/cloud/automl/v1beta1/doc/google/cloud/automl/v1beta1/data_stats.rb', line 139

class CategoryStats
  # 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; end
end