Nothing
check4NullModels <- function(lp){
allNull <- function(x) all(sapply(x, is.null))
whichNull <- which(sapply(lp, allNull))
if(length(whichNull)>0){
lp <- lp[-whichNull]
warning("Since ", length(whichNull), " of the models contain no variables, ",
"they are removed.", call.=FALSE)
}
lp
}
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.