Nothing
getAGFI <- function(fit, fitTheta, fittingType) {
if (fittingType == "PML") {
GFI <- getGFIgofPML(fit, fitTheta)
} else if (fittingType == "ULSC") {
GFI <- getGFIgofULSC(fit, fitTheta)
} else if (fittingType %in% c("GLSC2", "GLSC3")) {
GFI <- getGFIgofGLSC(fit, fitTheta)
} else if (fittingType == "GLSC4") {
GFI <- getGFIgofGLSC4(fit, fitTheta)
}
AGFI <- AGFIcalculation(GFI, fit, fitTheta)
return(AGFI)
}
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.