class_to_list <-
function (x)
{
slot_names <- slotNames(x)
l <- list()
for (name in slot_names) {
l[[name]] <- slot(x, name)
}
return(l)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.