Nothing
expand.vec <-
function (a, nplan)
{
if (length(a) == 1) {
a <- rep(a, length = nplan)
}
if (length(a) != nplan)
stop(paste(deparse(substitute(a)), "has length", length(a),
"for", nplan, "plans"))
return(a)
}
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.