search for: drawgrob

Displaying 3 results from an estimated 3 matches for "drawgrob".

Did you mean: draw_row
2012 Mar 16
1
ggmap crash
...000, cause 'memory not mapped' Traceback: 1: grid.Call.graphics(L_raster, x$raster, x$x, x$y, x$width, x$height, resolveHJust(x$just, x$hjust), resolveVJust(x$just, x$vjust), x$interpolate) 2: drawDetails.rastergrob(x, recording = FALSE) 3: drawDetails(x, recording = FALSE) 4: drawGrob(x) 5: recordGraphics(drawGrob(x), list(x = x), getNamespace("grid")) 6: grid.draw.grob(x$children[[i]], recording = FALSE) 7: grid.draw(x$children[[i]], recording = FALSE) 8: drawGTree(x) 9: recordGraphics(drawGTree(x), list(x = x), getNamespace("grid")) 10: grid.draw.gTree...
2008 Feb 05
2
Error in grid.text after tcltk package loaded
......, PACKAGE = "grid") 4: grid.Call.graphics("L_text", as.graphicsAnnot(x$label), x$x, x$y, resolveHJust(x$just, x$hjust), resolveVJust(x$just, x$vjust), x$rot, x$check.overlap) 3: drawDetails.text(x, recording = FALSE) 2: drawDetails(x, recording = FALSE) 1: drawGrob(x) I can only get these messages to happen after loading the tcltk package, using grid.text, with 'many' text strings (happens rarely with 100, almost every move with 1000 strings as in my example). I found just one reference to a similar error message in the archives, although not to...
2013 Mar 20
0
How to avoid using gridextra via Depends instead of Imports in a package ?
...ot;p", zoom_x=c(0,20), fdrLimit=0.6, overview_plot=TRUE) X11() library(gridExtra) print(plt) you will have the second plot. >From what I understood, the last line of panelinplot2(), " grid.draw(x)", dispatches to grid:::grid.draw.grob(), which in turn calls grid:::drawGrob(), which calls grid::drawDetails() which is a S3 generic. The gridExtra package defines the method drawDetails.lattice(). When the package is loaded in the search() path, the "grid.draw(x)" call dispatches to gridExtra:::drawDetails.lattice(). We would rather avoid messing with the sear...