Nothing
###########################################################################
# WAIC #
# #
# The purpose of the WAIC function is to calculate the Widely Applicable #
# Information Criterion. #
###########################################################################
WAIC <- function(x)
{
lppd <- sum (log(rowMeans(exp(x))))
pWAIC1 <- 2*sum(log(rowMeans(exp(x))) - rowMeans(x))
pWAIC2 <- sum(.rowVars(x))
WAIC <- -2*lppd + 2*pWAIC2
return(list(WAIC=WAIC, lppd=lppd, pWAIC=pWAIC2, pWAIC1=pWAIC1))
}
#End
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.