Nothing
Qhat <- function(y,
a,
g,
wgt = NULL){
pai <- table(a) / length(a)
ind <- a == g
if( is(wgt, "NULL") ) wgt <- numeric(length(ind)) + 1.0
multiplier <- wgt * ind / pai[as.character(a)]
Q <- sum( y * multiplier ) / sum( multiplier )
return(Q)
}
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.