Nothing
ModelFits <- R6::R6Class("ModelFits",
public = list(
fits = list(),
n_fits = 0,
append_fit = function(fit) {
self$n_fits <- self$n_fits + 1
self$fits[[self$n_fits]] <- fit
}
)
)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.