#' @importFrom stats pchisq p.adjust
dm_LRT <- function(lik_full, lik_null, df, verbose = FALSE){
if(verbose)
message("* Calculating likelihood ratio statistics.. \n")
time_start <- Sys.time()
lr <- 2*(lik_full - lik_null)
pvalue <- pchisq(lr, df = df , lower.tail = FALSE)
adj_pvalue <- p.adjust(pvalue, method="BH")
table <- matrix(c(lr, df, pvalue, adj_pvalue), ncol = 4, byrow = FALSE)
colnames(table) <- c("lr", "df", "pvalue", "adj_pvalue")
# table <- data.frame(lr = lr, df = df,
# pvalue = pvalue, adj_pvalue = adj_pvalue,
# stringsAsFactors = FALSE)
rownames(table) <- names(lik_full)
time_end <- Sys.time()
if(verbose) message("Took ", round(time_end - time_start, 4), " seconds.\n")
return(table)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.