Nothing
## File Name: syn_da_extend_vector.R
## File Version: 0.02
syn_da_extend_vector <- function(x, n, names=NULL)
{
if (length(x)==1 & (n>1) ){
x <- rep(x,n)
if (!is.null(names)){
names(x) <- names
}
}
return(x)
}
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.