Nothing
"gene.gene.statistic" <-
function(g1, g2, paperLens = paperLen())
{
## no adjustment
twT <- twowayTable(g1, g2, weights=FALSE, paperLens)
original <- twTStats(twT)
## Gene size adjusted
twT <- actorAdjTable(twT)
gs <- twTStats(twT)
## Paper size adjusted
twT <- twowayTable(g1, g2, weights=TRUE, paperLens)
ps <- twTStats(twT)
## both
twT <- actorAdjTable(twT)
both <- twTStats(twT)
return(list(original=original, gs=gs, ps=ps, both=both))
}
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.