treemapPlot.Rd
treemapPlot Plot GO terms as a treemap.
treemapPlot(reducedTerms, size = "score", title = "", ...)
a data.frame with the reduced terms from reduceSimMatrix()
what to use as point size. Can be either GO term's "size" or "score"
title of the plot. Defaults to nothing
other parameters sent to treemap::treemap()
A list from the call to the `treemap()` function is silently returned
if (FALSE) {
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)
}