-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
63 lines (41 loc) · 1.61 KB
/
README.Rmd
File metadata and controls
63 lines (41 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
title: R Markdown Slide Utilities
output: github_document
---
<!-- README.md is generated from README.Rmd. Edit this file, not that one -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
<!-- badges: start -->
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->
R Markdown Slide Utilities contains functions you can use to add custom content to R Markdown slide decks, including:
- Generate image builds from a series of PNG files
- Embed summary charts from a Google Form survey
- Add emojis with quotations
- Generate small HTML pages for exercise hints and solutions, populated by a Google Sheet, with an option to create bitly links to insert in a Rmd or R file
- Customize the CSS of SVGs created by DiagrammeR (*coming soon*)
\
# Installation
`slideutils` is on GitHub as well as R-universe. You can install it with:
```
options(repos = c(ajlyons = 'https://ajlyons.r-universe.dev',
CRAN = 'https://cloud.r-project.org'))
install.packages('slideutils')
```
OR
```
remotes::install_github("ucanr-igis/slideutils")
```
\
To see if its working:
```
library(slideutils)
```
# History
These utilities were originally part of the [`wrkshputils`](https://github.com/ucanr-igis/wrkshputils) package. They were split off into their own package mostly to make `wrkshputils` lighter, and because the functions in slideutils are generally only needed by slide content creators.