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

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

Defined Under Namespace

Classes: UnigramStats

Instance Attribute Summary collapse

Instance Attribute Details

#top_unigram_stats::Array<::Google::Cloud::AutoML::V1beta1::StringStats::UnigramStats>

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

Returns:



104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'proto_docs/google/cloud/automl/v1beta1/data_stats.rb', line 104

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

  # 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
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end