When I print the tablegrob, only a small viewport on it as shown below.
I have used the following script to print the table to a pdf
library(gridExtra)
library(grid)
mySummaryOfMyData <- summary(someDataframe)
grid.newpage()
mytt1 <- ttheme_default(base_size = 4, base_colour = "blue")
psummary <- gridExtra::tableGrob(as.matrix(mySummaryOfMyData), theme=mytt1)
grid.draw(psummary)
How can I show the unclipped data on the full PDF estate?