| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Forecast.Types.Statistics
Description
Synopsis
- data Statistics = Statistics' {}
- newStatistics :: Statistics
- statistics_avg :: Lens' Statistics (Maybe Double)
- statistics_count :: Lens' Statistics (Maybe Int)
- statistics_countDistinct :: Lens' Statistics (Maybe Int)
- statistics_countDistinctLong :: Lens' Statistics (Maybe Integer)
- statistics_countLong :: Lens' Statistics (Maybe Integer)
- statistics_countNan :: Lens' Statistics (Maybe Int)
- statistics_countNanLong :: Lens' Statistics (Maybe Integer)
- statistics_countNull :: Lens' Statistics (Maybe Int)
- statistics_countNullLong :: Lens' Statistics (Maybe Integer)
- statistics_max :: Lens' Statistics (Maybe Text)
- statistics_min :: Lens' Statistics (Maybe Text)
- statistics_stddev :: Lens' Statistics (Maybe Double)
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.
Constructors
| Statistics' | |
Fields
| |
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:avg:Statistics', statistics_avg - For a numeric field, the average value in the field.
$sel:count:Statistics', statistics_count - The number of values in the field. If the response value is -1, refer to
CountLong.
$sel:countDistinct:Statistics', statistics_countDistinct - The number of distinct values in the field. If the response value is -1,
refer to CountDistinctLong.
$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: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: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:countNull:Statistics', statistics_countNull - The number of null values in the field. If the response value is -1,
refer to CountNullLong.
$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:max:Statistics', statistics_max - For a numeric field, the maximum value in the field.
$sel:min:Statistics', statistics_min - For a numeric field, the minimum value in the field.
$sel:stddev:Statistics', statistics_stddev - For a numeric field, the standard deviation.
statistics_avg :: Lens' Statistics (Maybe Double) Source #
For a numeric field, the average value in the field.
statistics_count :: Lens' Statistics (Maybe Int) Source #
The number of values in the field. If the response value is -1, refer to
CountLong.
statistics_countDistinct :: Lens' Statistics (Maybe Int) Source #
The number of distinct values in the field. If the response value is -1,
refer to CountDistinctLong.
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_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_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_countNull :: Lens' Statistics (Maybe Int) Source #
The number of null values in the field. If the response value is -1,
refer to CountNullLong.
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_max :: Lens' Statistics (Maybe Text) Source #
For a numeric field, the maximum value in the field.
statistics_min :: Lens' Statistics (Maybe Text) Source #
For a numeric field, the minimum value in the field.
statistics_stddev :: Lens' Statistics (Maybe Double) Source #
For a numeric field, the standard deviation.