| goose_load | R Documentation |
Retrieve a previously saved R object from Goose's memory system.
goose_load(name, category = "r_objects", global = TRUE)
name |
Character string. Name of the object to load |
category |
Character string. Category where the object was saved (default: "r_objects") |
global |
Logical. If TRUE (default), loads from global memory. If FALSE, loads from project-local memory. |
The R object that was saved
## Not run:
# Load a previously saved model
model <- goose_load("mtcars_model", category = "models")
# Load a dataset
data <- goose_load("iris_data", category = "datasets")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.