-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
156 lines (113 loc) · 3.68 KB
/
README.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
echo = FALSE
)
library(magrittr)
main_repo <- "main-r4ds-1"
turma <- "202110-r4ds-1"
num_aula <- 7
```
## Referências do curso
- [Clique aqui](https://github.com/curso-r/main-r4ds-1/raw/master/material_do_curso.zip) para baixar o material do curso.
- R for Data Science: [https://r4ds.had.co.nz/](https://r4ds.had.co.nz/) (em inglês) e [https://es.r4ds.hadley.nz/](https://es.r4ds.hadley.nz/) (em espanhol).
- Nosso blog: [https://curso-r.com/blog/](https://curso-r.com/blog/)
## Dúvidas
Fora do horário de aula ou monitoria:
- perguntas gerais sobre o curso deverão ser feitas no Classroom.
- perguntas sobre R, principalmente as que envolverem código, deverão ser enviadas no [nosso fórum](https://discourse.curso-r.com/).
## Trabalhos finais premiados
```{r echo=FALSE}
nome_pasta <- "trabalho_final"
# https://curso-r.github.io/202110-r4ds-1/trabalho_final/Amanda_Silva_Mendes/index.html
tibble::tibble(
nome = list.files(nome_pasta, recursive = FALSE),
link = paste0(
"https://curso-r.github.io/",
turma, "/",
nome_pasta, "/",
nome
),
codigo = paste0(
"https://github.com/curso-r/",
turma, "/tree/main/",
nome_pasta, "/",
nome
)
) |>
dplyr::mutate(nome = stringr::str_replace_all(nome, "_", " ")) |>
knitr::kable(col.names = c("Nome", "Trabalho", "Código"))
```
## Slides
```{r}
knitr::kable(
tibble::tibble(
slide = CursoRutils:::list_github_files(main_repo, "slides/", "html"),
link = paste0("https://curso-r.github.io/", main_repo, "/", slide)
) %>%
dplyr::filter(!stringr::str_detect(slide, "_files/"))
)
```
## Scripts utilizados em aula
### Parte teórica
```{r}
pasta <- "scripts/"
knitr::kable(
tibble::tibble(
script = list.files(pasta, pattern = "R$"),
link = paste0("https://curso-r.github.io/", turma, "/", pasta, script)
)
)
```
### Parte prática
```{r}
pasta <- "pratica/"
knitr::kable(
tibble::tibble(
script = list.files(pasta, pattern = "R$|.Rmd"),
link = paste0("https://curso-r.github.io/", turma, "/", pasta, script)
)
)
```
## Lição de casa
```{r}
readxl::read_excel("tab_exercicios.xlsx") %>%
dplyr::filter(extra == "nao", aula <= num_aula) %>%
dplyr::mutate(link = glue::glue("[{desc}]({url})")) %>%
dplyr::select(-desc, -url, -extra) %>%
dplyr::arrange(aula) %>%
knitr::kable(col.names = c("Aula", "Descrição"))
```
## Lição de casa extra 🤓
```{r}
readxl::read_excel("tab_exercicios.xlsx") %>%
dplyr::filter(extra == "sim", aula <= num_aula) %>%
dplyr::mutate(link = glue::glue("[{desc}]({url})")) %>%
dplyr::select(-desc, -url, -extra) %>%
dplyr::arrange(aula) %>%
knitr::kable(col.names = c("Aula", "Descrição"))
```
## Material extra
Referências extras comentadas nas aulas, ou materiais que comentamos quando tiramos dúvidas (não necessariamente são relacionadas com o conteúdo da aula).
```{r echo=FALSE, message=FALSE}
googlesheets4::gs4_deauth()
"1SmCKCvJBff3CVty-xYKJ4NhEo2j6sUwkdET46vQisDY" %>%
googledrive::as_id() %>%
googlesheets4::read_sheet(main_repo) %>%
dplyr::mutate(link = glue::glue("[{desc}]({url})")) %>%
dplyr::select(-desc, -url) %>%
dplyr::arrange(aula) %>%
dplyr::filter(aula <= num_aula) %>%
knitr::kable(col.names = c("Aula", "Tema", "Descrição"))
```
## Redes sociais da Curso-R
Youtube: https://www.youtube.com/c/CursoR6/featured
Instagram: https://www.instagram.com/cursoo_r/
Twitter: https://twitter.com/curso_r
Linkedin: https://www.linkedin.com/company/curso-r/
Facebook: https://www.facebook.com/cursodeR