Nothing
evall <- function (sc, z, g, method)
{
bigN <- length(z)
stopifnot(g >= 1)
stopifnot(length(sc) == bigN)
o <- matrix(NA, bigN - 1, 3)
for (i in 1:(bigN - 1)) {
res <- ev(sc, z, i, g, method)
o[i, 1] <- i
o[i, 2] <- res$expect
o[i, 3] <- res$vari
}
colnames(o) <- c("m", "expect", "var")
as.data.frame(o)
}
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.