Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/MangoTheCat/slideBreakR
- Owner: MangoTheCat
- License: bsd-3-clause
- Created: 2016-02-01T19:53:20.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-03T11:13:49.000Z (almost 9 years ago)
- Last Synced: 2024-05-21T02:55:41.627Z (6 months ago)
- Language: R
- Size: 11.7 KB
- Stars: 1
- Watchers: 5
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
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")
```