Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/MangoTheCat/slideBreakR

An R package for splitting tables up over multiple slides using knitr, rmarkdown and slidy.
https://github.com/MangoTheCat/slideBreakR

Last synced: 3 months ago
JSON representation

An R package for splitting tables up over multiple slides using knitr, rmarkdown and slidy.

Awesome Lists containing this project

README

        

---
output:
md_document:
variant: markdown_github
---

```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
This package is designed to make rendering long tables easier in slides.

The `splitTable ` function does the actual splitting of a data.frame into a list of smaller data.frames.

The `writeRMDKable` will produce an .Rmd file with the results written as markdown, this can then be read into a presentation as knitr child item.

To install this package:
```
if(!require(devtools)) install.packages("devtools")
devtools::install_github("mangothecat/slideBreakR")
```