As of 2017, there is good support in R-studio presentation formats (Markdown) with package "pander", and output to PDF via Beamer.
See pander : http://rapporter.github.io/pander/#pander-an-r-pandoc-writer
Example in R-studio presentation code to print a data frame as table :
```{r}
pander(df)
```