powered by
Retrieve a previously saved R object from Goose's memory system.
goose_load(name, category = "r_objects", global = TRUE)
The R object that was saved
Character string. Name of the object to load
Character string. Category where the object was saved (default: "r_objects")
Logical. If TRUE (default), loads from global memory. If FALSE, loads from project-local memory.
if (FALSE) { # Load a previously saved model model <- goose_load("mtcars_model", category = "models") # Load a dataset data <- goose_load("iris_data", category = "datasets") }
Run the code above in your browser using DataLab