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>



116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'proto_docs/google/cloud/automl/v1beta1/data_stats.rb', line 116

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