I am moving away from Word/Excel tables and trying to generate a table in R. I have a data frame that I\'d like to simply print as a plot, while being able
Try this. Yes use pdf() to plot a PDF file (e.g. mydf.pdf) or png() to plot a png file:
pdf()
mydf.pdf
png()
library(gridExtra) pdf("mypdf.pdf", height=6, width=4) grid.table(x) dev.off()