datarobot (version 2.18.6)

GetPrimeFile: Retrieve a specific Prime file from a DataRobot project

Description

This function returns information about specified Prime file from a specified project.

Usage

GetPrimeFile(project, primeFileId)

Value

List with following elements:

language

Character string. Code programming language

isValid

logical flag indicating if code passed validation

rulesetId

Integer identifier for the ruleset

parentModelId

Unique alphanumeric identifier for the parent model

projectId

Unique alphanumeric identifier for the project

id

Unique alphanumeric identifier for the Prime file

modelId

Unique alphanumeric identifier for the model

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.

primeFileId

numeric. Unique alphanumeric identifier for the primeFile to be retrieved.

Examples

Run this code
if (FALSE) {
  projectId <- "59a5af20c80891534e3c2bde"
  primeFiles <- ListPrimeFiles(projectId)
  primeFile <- primeFiles[[1]]
  primeFileId <- primeFile$id
  GetPrimeFile(projectId, primeFileId)
}

Run the code above in your browser using DataLab