Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data Statistics = Statistics' {}
- newStatistics :: Statistics
- statistics_max :: Lens' Statistics (Maybe Text)
- statistics_countNullLong :: Lens' Statistics (Maybe Integer)
- statistics_countNan :: Lens' Statistics (Maybe Int)
- statistics_countNanLong :: Lens' Statistics (Maybe Integer)
- statistics_avg :: Lens' Statistics (Maybe Double)
- statistics_countNull :: Lens' Statistics (Maybe Int)
- statistics_count :: Lens' Statistics (Maybe Int)
- statistics_countLong :: Lens' Statistics (Maybe Integer)
- statistics_stddev :: Lens' Statistics (Maybe Double)
- statistics_min :: Lens' Statistics (Maybe Text)
- statistics_countDistinctLong :: Lens' Statistics (Maybe Integer)
- statistics_countDistinct :: Lens' Statistics (Maybe Int)
Documentation
data Statistics Source #
Provides statistics for each data field imported into to an Amazon Forecast dataset with the CreateDatasetImportJob operation.
See: newStatistics
smart constructor.
Statistics' | |
|
Instances
newStatistics :: Statistics Source #
Create a value of Statistics
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:max:Statistics'
, statistics_max
- For a numeric field, the maximum value in the field.
$sel:countNullLong:Statistics'
, statistics_countNullLong
- The number of null values in the field. CountNullLong
is used instead
of CountNull
if the value is greater than 2,147,483,647.
$sel:countNan:Statistics'
, statistics_countNan
- The number of NAN (not a number) values in the field. If the response
value is -1, refer to CountNanLong
.
$sel:countNanLong:Statistics'
, statistics_countNanLong
- The number of NAN (not a number) values in the field. CountNanLong
is
used instead of CountNan
if the value is greater than 2,147,483,647.
$sel:avg:Statistics'
, statistics_avg
- For a numeric field, the average value in the field.
$sel:countNull:Statistics'
, statistics_countNull
- The number of null values in the field. If the response value is -1,
refer to CountNullLong
.
$sel:count:Statistics'
, statistics_count
- The number of values in the field. If the response value is -1, refer to
CountLong
.
$sel:countLong:Statistics'
, statistics_countLong
- The number of values in the field. CountLong
is used instead of
Count
if the value is greater than 2,147,483,647.
$sel:stddev:Statistics'
, statistics_stddev
- For a numeric field, the standard deviation.
$sel:min:Statistics'
, statistics_min
- For a numeric field, the minimum value in the field.
$sel:countDistinctLong:Statistics'
, statistics_countDistinctLong
- The number of distinct values in the field. CountDistinctLong
is used
instead of CountDistinct
if the value is greater than 2,147,483,647.
$sel:countDistinct:Statistics'
, statistics_countDistinct
- The number of distinct values in the field. If the response value is -1,
refer to CountDistinctLong
.
statistics_max :: Lens' Statistics (Maybe Text) Source #
For a numeric field, the maximum value in the field.
statistics_countNullLong :: Lens' Statistics (Maybe Integer) Source #
The number of null values in the field. CountNullLong
is used instead
of CountNull
if the value is greater than 2,147,483,647.
statistics_countNan :: Lens' Statistics (Maybe Int) Source #
The number of NAN (not a number) values in the field. If the response
value is -1, refer to CountNanLong
.
statistics_countNanLong :: Lens' Statistics (Maybe Integer) Source #
The number of NAN (not a number) values in the field. CountNanLong
is
used instead of CountNan
if the value is greater than 2,147,483,647.
statistics_avg :: Lens' Statistics (Maybe Double) Source #
For a numeric field, the average value in the field.
statistics_countNull :: Lens' Statistics (Maybe Int) Source #
The number of null values in the field. If the response value is -1,
refer to CountNullLong
.
statistics_count :: Lens' Statistics (Maybe Int) Source #
The number of values in the field. If the response value is -1, refer to
CountLong
.
statistics_countLong :: Lens' Statistics (Maybe Integer) Source #
The number of values in the field. CountLong
is used instead of
Count
if the value is greater than 2,147,483,647.
statistics_stddev :: Lens' Statistics (Maybe Double) Source #
For a numeric field, the standard deviation.
statistics_min :: Lens' Statistics (Maybe Text) Source #
For a numeric field, the minimum value in the field.
statistics_countDistinctLong :: Lens' Statistics (Maybe Integer) Source #
The number of distinct values in the field. CountDistinctLong
is used
instead of CountDistinct
if the value is greater than 2,147,483,647.
statistics_countDistinct :: Lens' Statistics (Maybe Int) Source #
The number of distinct values in the field. If the response value is -1,
refer to CountDistinctLong
.