Skip to content

delete_project

Delete a project

Description

Delete a project

Usage

delete_project(
  project_name,
  delete_experiments = TRUE,
  workspace_name = NULL,
  api_key = NULL
)

Arguments

ArgumentDescription
project_nameProject name.
delete_experimentsIf TRUE, delete all the experiments in the project.
workspace_nameWorkspace name (can also be specified using the COMET_WORKSPACE parameter as an environment variable or in a comet config file).
api_keyComet 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")
Apr. 11, 2024