convert.vecteur <- function(vector){
if(is.numeric(vector)){
char<- paste0(" ", deparse(substitute(vector)), " ~ ", paste(vector,collapse = ","))
}
else {
char <- paste0(" ", deparse(substitute(vector)), " ~ ", paste(vector,collapse = ","))
}
return(char)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.