ListAnomalyAssessmentRecords {datarobot}R Documentation

Retrieve anomaly assessment records.

Description

Retrieve anomaly assessment records.

Usage

ListAnomalyAssessmentRecords(
  projectId,
  modelId,
  backtest = NULL,
  source = NULL,
  seriesId = NULL,
  limit = 100,
  offset = 0
)

Arguments

projectId

character. The ID of the project.

modelId

character. The ID of the model.

backtest

integer or "holdout". Optional. The backtest to filter records by.

source

"training" or "validation". Optional. The source of the data to filter records by.

seriesId

character. Optional. Can be specified for multiseries projects. The series id to filter records by.

limit

integer, greater than zero. Optional. Defaults to 100. At most this many results are returned. The default may change without notice.

offset

integer. Optional. Default is 0. This many results will be skipped.

Value

A list of objects with anomaly assessment metadata:

See Also

Other Anomaly Assessment functions: DeleteAnomalyAssessmentRecord(), GetAnomalyAssessmentExplanations(), GetAnomalyAssessmentPredictionsPreview(), InitializeAnomalyAssessment()

Examples

## Not run: 
projectId <- "59a5af20c80891534e3c2bde"
modelId <- "59a5af20c80891534e3c2bdd"
records <- ListAnomalyAssessmentRecords(projectId, modelId, backtest=0, seriesId="Baltimore")

## End(Not run)

[Package datarobot version 2.18.6 Index]