-
Notifications
You must be signed in to change notification settings - Fork 9
/
module_04_ioslides.Rmd
62 lines (41 loc) · 1.14 KB
/
module_04_ioslides.Rmd
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
62
---
title: "Slides - ioslides"
author: "Melinda K. Higgins, PhD."
date: "March 21, 2018"
output:
ioslides_presentation: default
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
## R Markdown
This is an R Markdown presentation. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document.
## Slide with Bullets
- Bullet 1
- Bullet 2
- Bullet 3
## Slide with R Output
```{r cars, echo = TRUE}
summary(cars)
```
## Slide with Plot
```{r pressure}
plot(pressure)
```
## A slide with an inserted image {.flexbox .vcenter}
Here is an image inserted
![](sunstar.png)
## A slide with a table
```{r}
knitr::kable(head(cars),
caption = "Top 6 Rows of Cars Dataset")
```
## A slide with an equation
A simple linear regression equation
$$ Y = \beta_0 + \beta_1x $$
## A slide with 2 columns {.columns-2}
![](sunstar.png)
- bullet 1
- bullet 2
- bullet 3