Learn R Programming

datarobot (version 2.18.2)

RequestFeatureImpact: Request Feature Impact to be computed.

Description

This adds a Feature Impact job to the project queue.

Usage

RequestFeatureImpact(model)

Value

A job ID (character)

Arguments

model

character. The model for which you want to compute Feature Impact, e.g. from the list of models returned by ListModels(project).

Examples

Run this code
if (FALSE) {
  model <- ListModels(project)[[1]]
  featureImpactJobId <- RequestFeatureImpact(model)
  featureImpact <- GetFeatureImpactForJobId(project, featureImpactJobId)
}

Run the code above in your browser using DataLab