Nothing
"t2.unequ" <-
function(x, ind1, ind2){
dat1 <- x[ind1,]
dat2 <- x[ind2,]
nn <- length(ind1)
nd <- length(ind2)
SN <- var(dat1)
SD <- var(dat2)
S <- SD/nd + SN/nn
xbar1 <- colMeans(dat1)
xbar2 <- colMeans(dat2)
xdiff <- xbar1 - xbar2
t2 <- xdiff %*% solve(S) %*% xdiff
return(t2)
}
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.