result_list: List saved results from the framework database

View source: R/outputs.R

result_listR Documentation

List saved results from the framework database

Description

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)
}



framework documentation built on Feb. 18, 2026, 1:07 a.m.