-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.Rmd
58 lines (45 loc) · 1.47 KB
/
Index.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
---
title: "Disciplina FISIOLOGIA VEGETAL"
subtitle: "Prática 01: Atividade Da Catalase em Tubérculos de Batata (Solanum tuberosum)"
author: "Prof. Tiago Massi Ferraz; Alunas: Izadora Carvalho e Florine"
institute: "Universidade Estadual do Maranhão, UEMA"
date: "2022/04/05 (updated: `r Sys.Date()`)"
ecoding: "UTF-8"
output:
xaringan::moon_reader:
chakra: libs/remark-latest.min.js
css: ["kunoichi", "ninjutsu", "custom.css"]
#css: [xaringan-themer.css, custom.css]
lib_dir: libs
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
#knit: pagedown::chrome_print ## interessante usar somente quando tiver finalizado a apresentacao
---
<span style="color:pink"> R-Ladies </span> é uma organização que promove a **diversidade de gênero** na comunidade da linguagem `R`.
```{r xaringan-logo, echo=FALSE}
xaringanExtra::use_logo(
image_url = "https://raw.githubusercontent.com/rstudio/hex-stickers/master/PNG/xaringan.png",
link_url = "https://pkg.garrickadenbuie.com/xaringanExtra/#/logo"
)
```
---
Obs: atalho para Chunks de código: ctrl + Alt + i
```{r echo=FALSE}
knitr::kable(mtcars)
```
---
```{r echo=FALSE, fig.align='center', out.width="50%"}
knitr::include_graphics("https://github.com/allisonhorst/stats-illustrations/raw/master/other-stats-artwork/acf_1.jpg")
```
---
```{r echo=FALSE, fig.align='center', out.width="50%"}
knitr::include_graphics("img/ggplot2.png")
```
```{r}
x <- 4
y <- 6
x + y
```
---