Nothing
#' @rdname rand
#'
#' @export
"crand" <-
function (tab) #Hubert & Arabie
{
n <- sum(tab)
sum.ni2 <- sum(choose(rowSums(tab), 2))
sum.nj2 <- sum(choose(colSums(tab), 2))
E<- sum.ni2 * sum.nj2 / choose(n, 2)
return((sum(choose(tab, 2)) - E)/((sum.ni2 + sum.nj2)/2 - E))
}
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.