Nothing
#
# get the edges annotations
#
getEdgeAnnot <- function(n, allpos=FALSE){
if (!allpos) {
ret <- c(paste("w+", rep(seq(1,n), rep(n,n)), rep(seq(1,n), n), sep="_"), # pos variables
paste("w-", rep(seq(1,n), rep(n,n)), rep(seq(1,n), n), sep="_"), # neg variables
paste("w", seq(1,n), "^", 0, sep="_")) # baseline values
}
else {
ret <- c(paste("w+",rep(seq(1,n), rep(n,n)), rep(seq(1,n), n), sep="_"), # pos variables
paste("w",seq(1,n), "^", 0, sep="_")) # baseline values
}
return(ret)
}
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.