If `colour` is not assigned, the PDF has one page, as expected. ``` pdf("cars.pdf") plot <- ggplot(mtcars, aes(drat, wt, colour = cyl)) + geom_point() grob <- ggplotGrob(plot) plot(1:10) dev.off() ```