Nothing
#' aicc_f
#' to be documented
#' @usage aicc_f(e,ts)
#' @param e residuals
#' @param ts trace(S)
#' @noRd
#' @return to be documented
aicc_f <-
function(e,ts,n){
n=length(e)
#n*log(sum(e^2)/n)+n*log(2*pi)+n*(n+ts)/(n-2-ts)
n*log(sum(e^2)/n)+n*log(2*pi)+n*(n+ts)/(n-1-ts)
}
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.