ListPredictionExplanationsMetadata {datarobot}R Documentation

Retrieve metadata for prediction explanations in specified project

Description

Retrieve metadata for prediction explanations in specified project

Usage

ListPredictionExplanationsMetadata(
  project,
  modelId = NULL,
  limit = NULL,
  offset = NULL
)

Arguments

project

character. Either (1) a character string giving the unique alphanumeric identifier for the project, or (2) a list containing the element projectId with this identifier.

modelId

character. Optional. If specified, only prediction explanations computed for this model will be returned.

limit

integer. Optional. At most this many results are returned, default: no limit

offset

integer. This many results will be skipped, default: 0

Value

List of metadata for all prediction explanations in the project. Each element of list is metadata for one prediction explanations (for format see GetPredictionExplanationsMetadata).

Examples

## Not run: 
  projectId <- "59a5af20c80891534e3c2bde"
  ListPredictionExplanationsMetadata(projectId)

## End(Not run)

[Package datarobot version 2.18.6 Index]