| result_list | R Documentation |
Retrieves a list of all saved results (tables, figures, models, reports, notebooks) that have been tracked via the save_* functions.
result_list(type = NULL, public = NULL)
type |
Optional filter by type: "table", "figure", "model", "report", "notebook" |
public |
Optional filter: TRUE for public results only, FALSE for private only |
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.
if (FALSE) {
# List all results
result_list()
# List only tables
result_list(type = "table")
# List only public figures
result_list(type = "figure", public = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.