Nothing
.do_lines_colors <- function(lines.df, objects.df, color.param){
if(sum(lines.df[, 1] %in% objects.df$id) > 1){
lines.df <- merge(lines.df,
objects.df[, c("id", color.param)],
by.x="from", by.y="id")
} else{
lines.df <- merge(lines.df,
objects.df[, c("id", color.param)],
by.x="to", by.y="id")
}
lines.df
}
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.