View source: R/DeleteModelJob.R
DeleteModelJob | R Documentation |
This function deletes the modeling job specified by modelJobId from the DataRobot modeling queue.
DeleteModelJob(project, modelJobId)
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. |
modelJobId |
integer. Identifier for the modeling job to be deleted; can be obtained from the results returned by the function ListModelJobs. |
## Not run:
projectId <- "59a5af20c80891534e3c2bde"
initialJobs <- ListModelJobs(project)
job <- initialJobs[[1]]
modelJobId <- job$modelJobId
DeleteModelJob(projectId, modelJobId)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.