Learn R Programming

datarobot (version 2.18.6)

GetBlueprint: Retrieve a blueprint

Description

Retrieve a blueprint

Usage

GetBlueprint(project, blueprintId)

Value

List with the following four components:

projectId

Character string giving the unique DataRobot project identifier

processes

List of character strings, identifying any preprocessing steps included in the blueprint

blueprintId

Character string giving the unique DataRobot blueprint identifier

modelType

Character string, specifying the type of model the blueprint builds

blueprintCategory

Character string. Describes the category of the blueprint and the kind of model it produces.

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.

blueprintId

character. Id of blueprint to retrieve.

Examples

Run this code
if (FALSE) {
  projectId <- "59a5af20c80891534e3c2bde"
  modelId <- "5996f820af07fc605e81ead4"
  model <- GetModel(projectId, modelId)
  blueprintId <- model$blueprintId
  GetBlueprint(projectId, blueprintId)
}

Run the code above in your browser using DataLab