Nothing
# This file contains exception checking and error handling functions
#
# exception handling function for malformed input in lindia
#
handle_exception <- function(input, function_name){
type = class(input)
# exception handling : input not lm object
if (type != "lm"){
stop(paste(function_name, "doesn't know how to handle non-lm object"))
}
}
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.