You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::Glue::Types::DoubleColumnStatisticsData
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DoubleColumnStatisticsData
- Defined in:
- (unknown)
Overview
Note:
When passing DoubleColumnStatisticsData as input to an Aws::Client method, you can use a vanilla Hash:
{
minimum_value: 1.0,
maximum_value: 1.0,
number_of_nulls: 1, # required
number_of_distinct_values: 1, # required
}
Defines column statistics supported for floating-point number data columns.
Returned by:
Instance Attribute Summary collapse
-
#maximum_value ⇒ Float
The highest value in the column.
-
#minimum_value ⇒ Float
The lowest value in the column.
-
#number_of_distinct_values ⇒ Integer
The number of distinct values in a column.
-
#number_of_nulls ⇒ Integer
The number of null values in the column.
Instance Attribute Details
#maximum_value ⇒ Float
The highest value in the column.
#minimum_value ⇒ Float
The lowest value in the column.
#number_of_distinct_values ⇒ Integer
The number of distinct values in a column.
#number_of_nulls ⇒ Integer
The number of null values in the column.