How does JMP compute AICc?
Hi. I'd like to know how JMP computes AICc in the Distribution platform, or in the Fit Censored function? Research on wiki suggests it should be this format: AICc = 2k - 2*Ln(maxlikelihood) + (2k^2 + 2k)/(n - k - 1)where n = # datapoint, k = # fit parameters. However, in this topic another 2 different formulas are provided. AICc2 = n*Ln(sse/n) + 2*k + (2*k^2 + 2*k)/(n - k - 1);where sse is the ...