Class: Google::Apis::LanguageV2::XpsCategoryStats

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/language_v2/classes.rb,
lib/google/apis/language_v2/representations.rb,
lib/google/apis/language_v2/representations.rb

Overview

The data statistics of a series of CATEGORY values.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ XpsCategoryStats

Returns a new instance of XpsCategoryStats.



1115
1116
1117
# File 'lib/google/apis/language_v2/classes.rb', line 1115

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#common_statsGoogle::Apis::LanguageV2::XpsCommonStats

Common statistics for a column with a specified data type. Corresponds to the JSON property commonStats



1107
1108
1109
# File 'lib/google/apis/language_v2/classes.rb', line 1107

def common_stats
  @common_stats
end

#top_category_statsArray<Google::Apis::LanguageV2::XpsCategoryStatsSingleCategoryStats>

The statistics of the top 20 CATEGORY values, ordered by CategoryStats. SingleCategoryStats.count. Corresponds to the JSON property topCategoryStats



1113
1114
1115
# File 'lib/google/apis/language_v2/classes.rb', line 1113

def top_category_stats
  @top_category_stats
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1120
1121
1122
1123
# File 'lib/google/apis/language_v2/classes.rb', line 1120

def update!(**args)
  @common_stats = args[:common_stats] if args.key?(:common_stats)
  @top_category_stats = args[:top_category_stats] if args.key?(:top_category_stats)
end