Nothing
## File Name: tam_mml_person_EAP_rel.R
## File Version: 0.05
tam_mml_person_EAP_rel <- function(EAP, SD.EAP, pweights=NULL)
{
if (is.null(pweights)){
pweights <- rep(1, length(EAP) )
}
EAP.variance <- weighted_mean( EAP^2, pweights ) - ( weighted_mean( EAP, pweights ) )^2
EAP.error <- weighted_mean( SD.EAP^2, pweights )
EAP.rel <- EAP.variance / ( EAP.variance + EAP.error )
return(EAP.rel)
}
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.