Nothing
pcrGOF <- function(object, PRESS = FALSE)
{
retList <- list(Rsq = Rsq(object), Rsq.ad = Rsq.ad(object), AIC = AIC(object),
AICc = AICc(object), BIC = BIC(object), resVar = resVar(object),
RMSE = RMSE(object))
fcsq <- try(fitchisq(object), silent = TRUE)
if (!inherits(fcsq, "try-error") & !all(is.na(fcsq))) retList <- c(retList, chi2.red = fcsq$chi2.red)
if (PRESS) {
P.square <- tryCatch(PRESS(object, verbose = TRUE)$P.square, error = function(e) NA)
retList <- c(retList, P.square = P.square)
}
return(retList)
}
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.