powered by
Retrieves detailed information about a specific project from the database.
project_get(project, con = NULL)
A single-row data frame containing project information with columns:
Unique project identifier
Project name
Name of the task table for this project
Logical indicating if project is running (TRUE) or stopped (FALSE)
Memory requirement in GB for tasks
Stops with an error if the project is not found.
Character string specifying the project name.
An optional database connection. If NULL, a new connection is created and closed automatically.
project_add, project_list, project_resource_get
project_add
project_list
project_resource_get
if (FALSE) { # Not run: # Get project details info <- project_get("simulation_study") print(info$status) # Check if running print(info$memory) # Memory requirement }
Run the code above in your browser using DataLab