Class: Google::Apis::LanguageV2::XpsCategoryStats
- Inherits:
-
Object
- Object
- Google::Apis::LanguageV2::XpsCategoryStats
- 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
-
#common_stats ⇒ Google::Apis::LanguageV2::XpsCommonStats
Common statistics for a column with a specified data type.
-
#top_category_stats ⇒ Array<Google::Apis::LanguageV2::XpsCategoryStatsSingleCategoryStats>
The statistics of the top 20 CATEGORY values, ordered by CategoryStats.
Instance Method Summary collapse
-
#initialize(**args) ⇒ XpsCategoryStats
constructor
A new instance of XpsCategoryStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ XpsCategoryStats
Returns a new instance of XpsCategoryStats.
1129 1130 1131 |
# File 'lib/google/apis/language_v2/classes.rb', line 1129 def initialize(**args) update!(**args) end |
Instance Attribute Details
#common_stats ⇒ Google::Apis::LanguageV2::XpsCommonStats
Common statistics for a column with a specified data type.
Corresponds to the JSON property commonStats
1121 1122 1123 |
# File 'lib/google/apis/language_v2/classes.rb', line 1121 def common_stats @common_stats end |
#top_category_stats ⇒ Array<Google::Apis::LanguageV2::XpsCategoryStatsSingleCategoryStats>
The statistics of the top 20 CATEGORY values, ordered by CategoryStats.
SingleCategoryStats.count.
Corresponds to the JSON property topCategoryStats
1127 1128 1129 |
# File 'lib/google/apis/language_v2/classes.rb', line 1127 def top_category_stats @top_category_stats end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1134 1135 1136 1137 |
# File 'lib/google/apis/language_v2/classes.rb', line 1134 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 |