Class: Google::Cloud::AutoML::V1beta1::StringStats

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 STRING values.

Defined Under Namespace

Classes: UnigramStats

Instance Attribute Summary collapse

Instance Attribute Details

#top_unigram_statsArray<Google::Cloud::AutoML::V1beta1::StringStats::UnigramStats>

Returns The statistics of the top 20 unigrams, ordered by count.

Returns:



91
92
93
94
95
96
97
98
99
100
# File 'lib/google/cloud/automl/v1beta1/doc/google/cloud/automl/v1beta1/data_stats.rb', line 91

class StringStats
  # The statistics of a unigram.
  # @!attribute [rw] value
  #   @return [String]
  #     The unigram.
  # @!attribute [rw] count
  #   @return [Integer]
  #     The number of occurrences of this unigram in the series.
  class UnigramStats; end
end