Skip to content

Instantly share code, notes, and snippets.

@yihui
Created May 25, 2012 22:26
Show Gist options
  • Select an option

  • Save yihui/2790922 to your computer and use it in GitHub Desktop.

Select an option

Save yihui/2790922 to your computer and use it in GitHub Desktop.
draw a table by gridExtra in knitr
\documentclass{article}
\begin{document}
We can draw a table with the gridExtra package, and one problem is to
pre-determine the size of the table plot to remove the extra white
margin. Below is an example that shows you how to do it (courtesy of
baptiste auguie).
<<setup>>=
library(gridExtra)
g = tableGrob(head(iris, 4))
<<draw-table, dev='png', dpi=150, fig.width=convertWidth(grobWidth(g), "in", value=TRUE), fig.height=convertHeight(grobHeight(g), "in", value=TRUE)>>=
grid.draw(g)
@
\end{document}
@baptiste
Copy link
Copy Markdown

Thanks, I didn't know that. Regarding Rplots.pdf, it is definitely created when I knit the gist above. Do you mean that it's not knitr's fault that it exists (which is correct, grid opens a device also in interactive use to test the fontsize)?

@yihui
Copy link
Copy Markdown
Author

yihui commented May 26, 2012

I see. I did not know convertWidth() has to open a device. I'll fix this. Thanks!

@yihui
Copy link
Copy Markdown
Author

yihui commented May 26, 2012

fixed; will appear in my next commit

@baptiste
Copy link
Copy Markdown

Thanks!

@1beb
Copy link
Copy Markdown

1beb commented Sep 7, 2012

Was looking for exactly this! Is there any way to reduce the amount of typing involved? I'm using your code in a similar way with Rmd:

```{r} 
g = tableGrob(head(iris, 4))
```{r draw-table, dev='png', dpi=72, fig.width=convertWidth(grobWidth(g), "in", value=TRUE), fig.height=convertHeight(grobHeight(g), "in", value=TRUE)}
grid.draw(g)
```

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment