Nothing
InteractGraph=function(toptable,thresh,sizecutoff=0,by,key=FALSE,file="interactions",colors = list(neg="blue",pos="yellow",key="brown",node="grey")){
toptable$interaction=ifelse(toptable[,by]<thresh,toptable$size,0)
toptable$interaction=ifelse(abs(toptable$interaction)>sizecutoff,toptable$interaction,0)
ms = tt2matrix(toptable,what="interaction")
graphPart(ms = ms, key=key,file=file,colors=colors)
}
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.