Nothing
#' @importFrom stats na.omit
#' @export
cronbach <-
function(v1)
{
v1 <- na.omit(v1)
nv1 <- ncol(v1)
pv1 <- nrow(v1)
alpha <- (nv1/(nv1-1))*(1 - sum(apply(v1,2,var))/var(apply(v1,1,sum)))
resu <- list("sample.size"=pv1,"number.of.items"=nv1,"alpha"=alpha)
resu
}
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.