if (FALSE) {
# Save a model
model <- lm(mpg ~ wt, data = mtcars)
goose_save(model, "mtcars_model",
category = "models",
tags = c("regression", "mtcars"),
description = "Linear model predicting mpg from weight")
# Save a data frame
goose_save(iris, "iris_data",
category = "datasets",
tags = "example")
}
Run the code above in your browser using DataLab