-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
exemplo_3_yaml.Rmd
51 lines (39 loc) · 1.11 KB
/
exemplo_3_yaml.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
---
title: "Apresentação Ninja"
subtitle: "Apresentação de exemplo feita no workshop sobre xaringan"
author: "@beamilz + @hsvab + @fernandakellyrs"
institute: "[#LatinR2020](https://twitter.com/LatinR_Conf) e [R-Ladies GYN](https://twitter.com/rladiesgyn)"
date: "Atualizado em `r format(Sys.Date(), format='%d de %B de %Y')`"
encoding: "UTF-8"
output:
xaringan::moon_reader:
chakra: libs/remark-latest.min.js
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
> [R-Ladies](https://rladies.org/) é uma organização que promove a __diversidade de gênero__ na comunidade da linguagem `R`.
---
Exemplo parcial da base `mtcars`:
```{r}
knitr::kable(head(mtcars))
```
---
- Adicionando imagem usando markdown:
![](https://cienciadedatos.github.io/dados/reference/figures/dados-hex.png)
---
```{r echo=FALSE, fig.align='center', out.width="50%"}
knitr::include_graphics("https://cienciadedatos.github.io/dados/reference/figures/dados-hex.png")
```
---
```{r}
knitr::include_graphics("img/naruto.jpg")
```
---
```{r}
x <-4
y <- 6
x + y
```