#get factors after find bars
getFACT <- function(bars){
if(length(bars)==1){
return(NULL)
}
else{
c(bars[[3]], getFACT(bars[[2]]))
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.