Learn R Programming

datarobot (version 2.8.0)

GetModelJob: Request information about a single model job

Description

Request information about a single model job

Usage

GetModelJob(project, modelJobId)

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.

modelJobId

Character string specifying the job id

Value

list with following elements:

  • status. Model job status; an element of JobStatus, e.g. JobStatus$Queue.

  • processes. List of character vectors describing any preprocessing applied.

  • projectId. Character string giving the unique identifier for the project.

  • samplePct. Numeric: the percentage of the dataset used for model building.

  • modelType. Character string specifying the model this job builds.

  • modelCategory. Character string: what kind of model this is - 'prime' for DataRobot Prime models, 'blend' for blender models, and 'model' for other models.

  • featurelistId. Character string: id of the featurelist used in fitting the model.

  • blueprintId. Character string: id of the DataRobot blueprint on which the model is based.

  • modelJobId. Character: id of the job.

Examples

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

Run the code above in your browser using DataLab