powered by
Retrieves information about all projects in the database.
project_list(con = NULL)
A data frame with one row per project, or NULL if no projects exist. Columns include: id, name, table, status, and memory.
An optional database connection. If NULL, a new connection is created and closed automatically.
Returns NULL if the project table doesn't exist (i.e., db_init has not been called).
db_init
project_add, project_get
project_add
project_get
if (FALSE) { # Not run: # List all projects projects <- project_list() print(projects) # Find running projects running <- projects[projects$status == TRUE, ] }
Run the code above in your browser using DataLab