Nothing
qval <-
function (Q, psi2)
{
n <- length(Q)
q <- rep("NC", n)
o <- order(abs(psi2))
q <- rep(1, n)
q[o[1]] <- Q[1]
for (i in 2:n) {
q[o[i]] <- min(Q[i], q[o[i - 1]])
}
q
}
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.