framework docs
Saving Work

result_list()

List saved results from the framework database

Retrieves a list of all saved results (tables, figures, models, reports, notebooks) that have been tracked via the save_* functions.

Usage

result_list(type = NULL, public = NULL)

Arguments

type
Optional filter by type: "table", "figure", "model", "report", "notebook"
public
Optional filter: TRUE for public results only, FALSE for private only

Value

A data frame with columns: name, type, public, comment, hash, created_at, updated_at. Returns an empty data frame if no results found or database unavailable.

Examples

if (FALSE) {
# List all results
result_list()
# List only tables
result_list(type = "table")
# List only public figures
result_list(type = "figure", public = TRUE)
}