Nothing
cumprobs <-
function (betas, z, lower = TRUE) {
lapply(betas, function (x, z) {
nx <- length(x)
out <- plogis(x[-nx] - matrix(x[nx] * z, nx - 1, length(z), TRUE))
if (lower) t(rbind(out)) else 1 - t(rbind(out))
}, z = z)
}
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.