Nothing
"drmLOFls" <- function()
{
## Defining lack-of-fit/goodness-of-fit tests
anovaTest <- function(formula, ds)
{
anovaFit <- lm(formula, data = ds)
if (df.residual(anovaFit) > 0)
{
return(list(test = "F", anovaFit = anovaFit))
} else {
return(NULL)
}
}
gofTest <- NULL
return(list(anovaTest = anovaTest, gofTest = gofTest))
}
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.