GetPrimeModelFromJobId | R Documentation |
Retrieve information about specified DataRobot Prime model using corresponding jobId.
GetPrimeModelFromJobId(project, jobId, maxWait = 600)
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 |
list (classed as dataRobotPrimeModel
) containing information
about specified DataRobot Prime model.
## Not run:
projectId <- "59a5af20c80891534e3c2bde"
initialJobs <- ListModelJobs(project)
job <- initialJobs[[1]]
modelJobId <- job$modelJobId
GetPrimeModelFromJobId(projectId, modelJobId)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.