datarobot (version 2.18.6)

RequestFeatureImpact: Request Feature Impact to be computed.

Description

This adds a Feature Impact job to the project queue.

Usage

RequestFeatureImpact(model, rowCount = NULL)

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).

rowCount

numeric. The sample size to use for Feature Impact computation. It is possible to re-compute Feature Impact with a different row count.

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