I am trying to get around ggplot2 . In particular, I am trying to find out if there is a better (more elegant, simpler) way to create a graph found in the vignette of the Bioconductor IRanges (found here , figure on page 12, code on page 11).

In a vignette, a chart is created with the following code:
plotRanges <- function(x, xlim = x, main = deparse(substitute(x)), + col = "black", sep = 0.5, ...) +{ + height <- 1 + if (is(xlim, "Ranges")) + xlim <- c(min(start(xlim)), max(end(xlim))) + bins <- disjointBins(IRanges(start(x), end(x) + 1)) + plot.new() + plot.window(xlim, c(0, max(bins)*(height + sep))) + ybottom <- bins * (sep + height) - height + rect(start(x)-0.5, ybottom, end(x)+0.5, ybottom + height, col = col, ...) + title(main) + axis(1) +} ir <- IRanges(c(1, 8, 14, 15, 19, 34, 40), + width = c(12, 6, 6, 15, 6, 2, 7)) plotRanges(ir)
The fact that stacked bars are created by drawing rectangles, and I need to calculate the corner points, the height and width of each rectangle, which I think are not very elegant, ggplot2 have a more elegant way to do this? I know that βelegantβ is not a very accurate description, but I hope you understand what I mean (unless I try to explain better).
r plot ggplot2 bioconductor
Andreas
source share