When working in a RMarkdown file, I end up needing to call %>% pander
after each statement I want to show in order to get the results to be displayed in the nice format that pander creates.
Is there any way to get RMarkdown / knitr to automatically send all of the results to pander in order to determine how it should print them?
```{r}
# default output looks bad
USJudgeRatings
```
```{r}
library(magrittr)
library(pander)
# With pander it looks much nicer
panderOptions('table.split.table', Inf)
USJudgeRatings %>% pander
```