delete_project: Delete a project¶
Description¶
Delete a project
Usage¶
r
delete_project(
project_name,
delete_experiments = TRUE,
workspace_name = NULL,
api_key = NULL
)
Arguments¶
Argument | Description |
---|---|
project_name |
Project name. |
delete_experiments |
If TRUE , delete all the experiments in the project. |
workspace_name |
Workspace name (can also be specified using the COMET_WORKSPACE parameter as an environment variable or in a comet config file). |
api_key |
Comet API key (can also be specified using the COMET_API_KEY parameter as an environment variable or in a comet config file). |
Examples¶
```r library(cometr)
Assuming you have COMET_API_KEY, COMET_WORKSPACE variables defined¶
delete_project(project_name = "project1") ```