Learn R Programming

gooseR (version 0.1.2)

goose_list: List Objects in Goose Memory

Description

List all R objects saved in Goose memory, optionally filtered by category or tags.

Usage

goose_list(category = NULL, tags = NULL, global = TRUE)

Value

A data.frame with information about saved objects

Arguments

category

Character string. Filter by category (default: NULL shows all)

tags

Character vector. Filter by tags (default: NULL shows all)

global

Logical. If TRUE (default), lists global memory. If FALSE, lists project-local memory.

Examples

Run this code
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