Learn R Programming

datarobot (version 2.18.6)

GetRatingTableFromJobId: Get a rating table from the rating table job metadata.

Description

Get a rating table from the rating table job metadata.

Usage

GetRatingTableFromJobId(project, ratingTableJobId, maxWait = 600)

Value

An S3 object of class 'dataRobotRatingTable' summarizing all available information about the rating table.

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.

ratingTableJobId

integer. The job ID returned by CreateRatingTable.

maxWait

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

Examples

Run this code
if (FALSE) {
   projectId <- "5984b4d7100d2b31c1166529"
   modelId <- "5984b4d7100d2b31c1166529"
   ratingTableJobId <- CreateRatingTable(projectId, modelId, dataSource = "myRatingTable.csv")
   GetRatingTableFromJobId(projectId, ratingTableJobId)
}

Run the code above in your browser using DataLab