Nothing
coef.sma <- function(object, ...){
x <- object
if(length(x$coef) == 1){
res <- x$coef[[1]][,1]
names(res) <- c("elevation","slope")
} else {
res <- lapply(x$coef, "[", 1)
res <- as.data.frame(do.call("rbind",lapply(res, t)))
rownames(res) <- names(x$coef)
}
return(res)
}
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.