#' aicc function
#'
#' aicc function caculates aicc (used internally)
#' @param x likelihood
#' @param k parameters
#' @param n sample size
#' @keywords
#' @return aicc
#' @export
#' @examples
#' aicc()
aicc <- function(x, k, n) -2 * x + (2 * k * (n/(n - k -1)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.