-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
40 lines (31 loc) · 1.27 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
---
title: "Aulas de R"
author: "Lucas Chagas Lima do Carmo"
date: "`r Sys.Date()`"
link-citations: yes
documentclass: book
site: bookdown::bookdown_site
output:
bookdown::gitbook:
config:
toolbar:
position: static
lib_dir: assets
split_by: rmd
split_bib: FALSE
bibliography: ["library.bib","packages.bib"]
biblio-style: "apalike"
---
# Introdução {.unnumbered}
```{r pacotes-bib, message=FALSE, warning=FALSE, include=FALSE}
library(knitr)
library(tidyverse)
library(patchwork)
library(tidyquant)
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown', 'tidyverse', 'ggplot2', "gganimate", "tidyquant", "patchwork"), 'packages.bib')
knitr::opts_chunk$set(error = FALSE, warning = FALSE, fig.align = "center", tidy = FALSE, comment = "R>",
dpi = 300, cache = FALSE, fig.show = "hold", fig.height = 3)
```
Para a primeira aula teremos que instalar `R` através do site <https://cran.r-project.org/> e o programa `RStudio` que é um ambiente de desenvolvimento integrado (IDE) que facilita a o uso do `R`, ele pode ser baixado para o sistema operacional que você estiver usando neste link <https://rstudio.com/products/rstudio/download/>
Você deve instalar o `R` antes do `RStudio`.