UpdateProject {datarobot} | R Documentation |
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 |
character. Updated value for the projectName parameter associated with the project. |
workerCount |
integer. The number of workers to run (default 2). Use |
holdoutUnlocked |
logical. Either NULL (default) or TRUE. If TRUE, this function requests the DataRobot Autopilot to unlock the holdout data subset. |
Examples
## Not run:
projectId <- "59a5af20c80891534e3c2bde"
UpdateProject(projectId, newProjectName = "cooler Project")
UpdateProject(projectId, workerCount = 20)
UpdateProject(projectId, holdoutUnlocked = TRUE)
## End(Not run)
[Package datarobot version 2.18.6 Index]