-
Notifications
You must be signed in to change notification settings - Fork 0
/
Module2_slidy.Rmd
61 lines (37 loc) · 1.08 KB
/
Module2_slidy.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
---
title: "Module 2 - ioslides - add more text"
author: "José Ulises Jiménez S."
date: "julio 10, 2020"
output:
slidy_presentation: default
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
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 $$