## File Name: sirt_vector_with_names.R
## File Version: 0.06
sirt_vector_with_names <- function(value, names)
{
vec <- rep( value, length(names) )
if ( ! is.numeric(names) ){
names(vec) <- names
}
return(vec)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.