How to convert data in a data frame into a graphic of a table?
I have my data in the dataframe and want to convert it into the graphic so that I can display
dataframe
You can create tables in the graphics window with something like:
library(gridExtra) library(grid) grid.table(x)
Otherwise have a look at knitr and pander or xtable for producing tables in Word/HTML documents.
knitr
pander
xtable