Learn R Programming

datarobot (version 2.9.0)

GetPrimeModelFromJobId: Retrieve information about specified DataRobot Prime model using corresponding jobId.

Description

Retrieve information about specified DataRobot Prime model using corresponding jobId.

Usage

GetPrimeModelFromJobId(project, jobId, maxWait = 600)

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

Unique integer identifier (return for example by RequestPrimeModel)

maxWait

maximum time to wait (in sec) before job completed

Value

list containing informatione about specified DataRobot Prime model

Examples

Run this code
# NOT RUN {
  projectId <- "59a5af20c80891534e3c2bde"
  initialJobs <- GetModelJobs(project)
  job <- initialJobs[[1]]
  modelJobId <- job$modelJobId
  GetPrimeModelFromJobId(projectId, modelJobId)
# }

Run the code above in your browser using DataLab