InitializeAnomalyAssessment {datarobot}R Documentation

Request anomaly assessment insight computation on the specified subset.

Description

Request anomaly assessment insight computation on the specified subset.

Usage

InitializeAnomalyAssessment(
  projectId,
  modelId,
  backtest,
  source,
  seriesId = NULL
)

Arguments

projectId

character. The ID of the project to compute insight for.

modelId

character. The ID of the model to compute insight for.

backtest

integer or "holdout". The backtest to compute insight for.

source

"training" or "validation". The source to compute insight for.

seriesId

character. Optional. The series id to compute insight for. Required for multiseries projects.

Value

An object with anomaly assessment metadata:

See Also

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

Examples

## Not run: 
projectId <- "59a5af20c80891534e3c2bde"
modelId <- "59a5af20c80891534e3c2bdd"
record <- InitializeAnomalyAssessment(projectId, modelId, backtest=0, source="validation",
   seriesId="Baltimore")

## End(Not run)

[Package datarobot version 2.18.6 Index]