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 WindowSummary = WindowSummary' {}
- newWindowSummary :: WindowSummary
- windowSummary_metrics :: Lens' WindowSummary (Maybe Metrics)
- windowSummary_testWindowEnd :: Lens' WindowSummary (Maybe UTCTime)
- windowSummary_evaluationType :: Lens' WindowSummary (Maybe EvaluationType)
- windowSummary_testWindowStart :: Lens' WindowSummary (Maybe UTCTime)
- windowSummary_itemCount :: Lens' WindowSummary (Maybe Int)
Documentation
data WindowSummary Source #
The metrics for a time range within the evaluation portion of a dataset. This object is part of the EvaluationResult object.
The TestWindowStart
and TestWindowEnd
parameters are determined by
the BackTestWindowOffset
parameter of the EvaluationParameters object.
See: newWindowSummary
smart constructor.
WindowSummary' | |
|
Instances
newWindowSummary :: WindowSummary Source #
Create a value of WindowSummary
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:metrics:WindowSummary'
, windowSummary_metrics
- Provides metrics used to evaluate the performance of a predictor.
$sel:testWindowEnd:WindowSummary'
, windowSummary_testWindowEnd
- The timestamp that defines the end of the window.
$sel:evaluationType:WindowSummary'
, windowSummary_evaluationType
- The type of evaluation.
SUMMARY
- The average metrics across all windows.COMPUTED
- The metrics for the specified window.
$sel:testWindowStart:WindowSummary'
, windowSummary_testWindowStart
- The timestamp that defines the start of the window.
$sel:itemCount:WindowSummary'
, windowSummary_itemCount
- The number of data points within the window.
windowSummary_metrics :: Lens' WindowSummary (Maybe Metrics) Source #
Provides metrics used to evaluate the performance of a predictor.
windowSummary_testWindowEnd :: Lens' WindowSummary (Maybe UTCTime) Source #
The timestamp that defines the end of the window.
windowSummary_evaluationType :: Lens' WindowSummary (Maybe EvaluationType) Source #
The type of evaluation.
SUMMARY
- The average metrics across all windows.COMPUTED
- The metrics for the specified window.
windowSummary_testWindowStart :: Lens' WindowSummary (Maybe UTCTime) Source #
The timestamp that defines the start of the window.
windowSummary_itemCount :: Lens' WindowSummary (Maybe Int) Source #
The number of data points within the window.