datarobot (version 2.18.6)

GetPrimeFileFromJobId: Retrieve a specific Prime file from a DataRobot project for corresponding jobId

Description

Retrieve a specific Prime file from a DataRobot project for corresponding jobId

Usage

GetPrimeFileFromJobId(project, jobId, maxWait = 600)

Value

List with following elements:

language

Character string. Code programming language

isValid

logical flag indicating if code passed validation

rulesetId

Integer identifier for the ruleset

parentModelId

Unique alphanumeric identifier for the parent model

projectId

Unique alphanumeric identifier for the project

id

Unique alphanumeric identifier for the Prime file

modelId

Unique alphanumeric identifier for the model

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.

jobId

numeric. Unique integer identifier (return for example by RequestPrimeModel)

maxWait

numeric. maximum time to wait (in sec) before job completed.

Examples

Run this code
if (FALSE) {
  projectId <- "59a5af20c80891534e3c2bde"
  initialJobs <- ListModelJobs(project)
  job <- initialJobs[[1]]
  modelJobId <- job$modelJobId
  GetPrimeFileFromJobId(projectId, modelJobId)
}

Run the code above in your browser using DataLab