Skip to content

create_project

Create a project

Description

Create a project

Usage

create_project(
  project_name,
  project_description,
  public = FALSE,
  workspace_name = NULL,
  api_key = NULL
)

Arguments

ArgumentDescription
project_nameProject name.
project_descriptionProject description.
publicWhether the project should be public or private.
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
create_project(project_name = "project1", project_description = "My first project")
Mar. 27, 2024