GetFeatureImpactForJobId {datarobot}R Documentation

Retrieve completed Feature Impact results given a job ID

Description

This will wait for the Feature Impact job to be completed (giving an error if the job is not a Feature Impact job and an error if the job errors).

Usage

GetFeatureImpactForJobId(project, jobId, maxWait = 600)

Arguments

project

character. The project the Feature Impact is part of.

jobId

character. The ID of the job (e.g. as returned from RequestFeatureImpact)

maxWait

integer. The maximum time (in seconds) to wait for the model job to complete

Value

A data frame with the following columns:

Examples

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

## End(Not run)

[Package datarobot version 2.18.6 Index]