RequestFeatureImpact {datarobot}R Documentation

Request Feature Impact to be computed.

Description

This adds a Feature Impact job to the project queue.

Usage

RequestFeatureImpact(model, rowCount = NULL)

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.

Value

A job ID (character)

Examples

## Not run: 
  model <- ListModels(project)[[1]]
  featureImpactJobId <- RequestFeatureImpact(model)
  featureImpact <- GetFeatureImpactForJobId(project, featureImpactJobId)

## End(Not run)

[Package datarobot version 2.18.6 Index]