Learn R Programming

datarobot (version 2.8.0)

UpdateProject: Update parameters for an existing project

Description

This function updates parameters for the project defined by project.

Usage

UpdateProject(project, newProjectName = NULL, workerCount = NULL,
  holdoutUnlocked = NULL)

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.

newProjectName

Updated value for the projectName parameter associated with the project.

workerCount

Integer; sets the number of workers requested for the associated project.

holdoutUnlocked

Either NULL (the default) or logical TRUE; if TRUE, this function requests the DataRobot Autopilot to unlock the holdout data subset.

Examples

Run this code
# NOT RUN {
  projectId <- "59a5af20c80891534e3c2bde"
  UpdateProject(projectId, newProjectName = "cooler Project")
  UpdateProject(projectId, workerCount = 20)
  UpdateProject(projectId, holdoutUnlocked = TRUE)
# }

Run the code above in your browser using DataLab