treemapPlot.Rd
treemapPlot Plot GO terms as a treemap.
treemapPlot(reducedTerms, size = "score", title = "", ...)
A list from the call to the `treemap()` function is silently returned
if (FALSE) { # \dontrun{
go_analysis <- read.delim(system.file("extdata/example.txt", package="rrvgo"))
simMatrix <- calculateSimMatrix(go_analysis$ID, orgdb="org.Hs.eg.db", ont="BP", method="Rel")
scores <- setNames(-log10(go_analysis$qvalue), go_analysis$ID)
reducedTerms <- reduceSimMatrix(simMatrix, scores, threshold=0.7, orgdb="org.Hs.eg.db")
treemapPlot(reducedTerms)
} # }