I've got a 100 x 2 df. I'm working in R markdown (knitting to PDF). I need to print()
the entire df, but I'd like to use column breaks so it prints neatly on a single page. A similar question's solution did not work for me.
My date is arranged like this:
```df <- data.frame(value=c(letters), count=c(1:26))```
Ideally, I'd like the df to print in, say, three side by side columns when I knit to PDF. This would avoid having to scroll down two pages to review the print()
.
Thanks for any guidance.