The hugo_memorise function saves an object as .rda file in the 'memory' subdirectory. If the object of the same name has been already saved, it gives the opportunity either to overwrite it or to stop the function execution.

hugo_memorise(object = NULL)

Arguments

object

an object to be saved as .rda file

Examples

# NOT RUN {
a <- 1:5
hugo_memorise(a)

b <- list('abcdef', seq(0,5,0.1), c(TRUE,FALSE))
hugo_memorise(b)
# }