Using unit.pmax
as the default comparison of widths/heights in gtable is proving harder than I'd hoped; after several hours of head scratching I've narrowed it down to this situation:
library(grid)
w <- list(unit(1,"null"), unit(1,"null"))
class(w) <- c("unit.list", "unit")
h <- unit(1, "in")
gl1 <- grid.layout(1, 2, widths = w, heights = h,
respect = TRUE)
grid.newpage()
grid.show.layout(gl1) # fine
w2 <- w
w2[[1]] <- unit.pmax(unit(1,"null"), unit(1,"null"))
gl2 <- grid.layout(1, 2, widths = w2, heights = h,
respect = FALSE)
grid.newpage()
grid.show.layout(gl2)# fine
gl3 <- grid.layout(1, 2, widths = w2, heights = h,
respect = TRUE)
grid.newpage()
grid.show.layout(gl3)
## Error in grid.Call.graphics(L_setviewport, vp, TRUE) :
## non-finite location and/or size for viewport
so the combination of unit.pmax(unit(1,"null"), unit(1,"null"))
and respect = TRUE
makes grid complain. In case you're wondering, that situation would come up in ggplot2 with facet_grid
and theme(aspect.ratio = ...)
.
I can vaguely picture that unit.pmax()
should simplify null units before attempting to use the respect
parameter, but I don't really know what this all means. In practice though, it prevents me from improving gtable's cbind/rbind.
Any workaround?
Edit: I'm not sure how to provide a minimal example with ggplot2
, other than installing my fork and running
ggplot(data.frame(x=1:8, y=1:8, f=gl(2,4)), aes(x, y)) +
geom_point() +
facet_grid(f~.) +
theme(aspect.ratio=3)
# Error in grid.Call.graphics(L_setviewport, vp, TRUE) :
# non-finite location and/or size for viewport
so unit.pmax()
fails in this case, while the current comparison method compare.unit(,,pmax)
fails in other situations, such as,
p1 = qplot(1, 1); p2 = qplot(1,1)
cbind(ggplotGrob(p1), ggplotGrob(p2), size="max")
# Error in mmm < each : comparison of these types is not implemented
A fix by Paul Murrell in R-devel @r65845 appears to solve the problem. Unfortunately, that means the update to
gtable
will have to wait at least until the next R release (and possibly much longer, as ggplot2 dev usually takes a conservative approach about supporting older releases).