delete_project
¶
Delete a project
Description¶
Delete a project
Usage¶
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¶
library(cometr)
# Assuming you have COMET_API_KEY, COMET_WORKSPACE variables defined
delete_project(project_name = "project1")
Nov. 18, 2024