rmdata = function(mod, ...) {
UseMethod("rmdata", mod)
}
rmdata.lm = function(mod) {
out = mod
out$model = NULL
return(out)
}
rmdata.ctm = function(mod) {
return(mod)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.