Nothing
TTEST = function(x, y, conf.level=0.95)
{
x = x[is.finite(x)]
y = y[is.finite(y)]
return(mtest(mean(x), sd(x), length(x), mean(y), sd(y), length(y), conf.level=conf.level))
}
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.