Get Data Quality Model Result
glue_get_data_quality_model_result | R Documentation |
Retrieve a statistic's predictions for a given Profile ID¶
Description¶
Retrieve a statistic's predictions for a given Profile ID.
Usage¶
Arguments¶
StatisticId
[required] The Statistic ID.
ProfileId
[required] The Profile ID.
Value¶
A list with the following syntax:
list(
CompletedOn = as.POSIXct(
"2015-01-01"
),
Model = list(
list(
LowerBound = 123.0,
UpperBound = 123.0,
PredictedValue = 123.0,
ActualValue = 123.0,
Date = as.POSIXct(
"2015-01-01"
),
InclusionAnnotation = "INCLUDE"|"EXCLUDE"
)
)
)