Saves a model in the directory chosen at the beginning of the current Hugo Investigation in the subfolder 'gallery' in .rda file and a summary in .md file

hugo_memorise_model(model = NULL, name = substitute(model))

Arguments

model

a model to be saved

name

a name of files

Examples

# NOT RUN {
mod.lm <- lm(Sepal.Length ~ Petal.Length, data = iris)
hugo_memorise_model(mod.lm, name = "model.iris")
# Or save as "mod.lm":
hugo_memorise_model(mod.lm)
# }