powered by
List all R objects saved in Goose memory, optionally filtered by category or tags.
goose_list(category = NULL, tags = NULL, global = TRUE)
A data.frame with information about saved objects
Character string. Filter by category (default: NULL shows all)
Character vector. Filter by tags (default: NULL shows all)
Logical. If TRUE (default), lists global memory. If FALSE, lists project-local memory.
if (FALSE) { # List all saved objects goose_list() # List objects in a specific category goose_list(category = "models") # List objects with specific tags goose_list(tags = "production") }
Run the code above in your browser using DataLab