generated from curso-r/template-pagina-do-curso
-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
158 lines (118 loc) · 3.63 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
157
---
output: github_document
params:
turma: 202403-r4ds-2
nome_curso: R para Ciência de Dados II
download_material: 'TRUE'
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(collapse = TRUE, comment = "#>", echo = FALSE,
warning = FALSE, message = FALSE)
path_to_url <- function(path) {
path |>
tibble::tibble(file = _) |>
dplyr::mutate(
url = file |>
paste0("https://curso-r.github.io/", params$turma, "/", ... = _) |>
paste0("[", fs::path_file(file), "](", ... = _, ")")
) |>
dplyr::select(url)
}
```
## Informações importantes
```{r results = 'asis'}
# Baixar o ZIP do repo da turma (o repo principal não vai ter os scripts feitos em aula)
if (params$download_material == "TRUE") {
glue::glue("- [Clique aqui](https://github.com/curso-r/202403-r4ds-2/raw/main/material_do_curso.zip) para baixar o material do curso.")
}
```
- Nosso blog: [https://curso-r.com/blog/](https://curso-r.com/blog/)
- Nosso fórum: [https://discourse.curso-r.com/](https://discourse.curso-r.com/)
- Nossos livros:
- [Ciência de Dados em R](https://livro.curso-r.com/)
- [Zen do R](https://curso-r.github.io/zen-do-r/)
- [Programando em Shiny](https://programando-em-shiny.curso-r.com/)
- [Beautiful R](https://curso-r.github.io/beautiful-r/) (em inglês)
## 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/).
## Slides
```{r}
"slides/" |>
fs::dir_ls(glob = "*.html", fail = FALSE) |>
path_to_url() |>
dplyr::select(Slide = url) |>
knitr::kable()
```
## Scripts utilizados em aula
```{r}
"exemplos_de_aula/" |>
fs::dir_ls(fail = FALSE) |>
path_to_url() |>
dplyr::select(Exemplo = url) |>
knitr::kable()
```
## Práticas
```{r}
"praticas/" |>
fs::dir_ls(fail = FALSE) |>
path_to_url() |>
dplyr::select(Exemplo = url) |>
knitr::kable()
```
## Lição de casa
```{r}
"exercicios/" |>
fs::dir_ls(fail = FALSE) |>
path_to_url() |>
dplyr::select(Exercício = url) |>
knitr::kable()
```
## Material extra
Referências extras relacionadas com o conteúdos das 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, warning=FALSE}
arquivo_csv_materiais <- "extras.csv"
if (file.exists(arquivo_csv_materiais)) {
arquivo_csv_materiais |>
readr::read_csv2(show_col_types = FALSE) |>
knitr::kable()
} else {
cat("Em breve!")
}
```
## 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
```{r include = FALSE}
# Criar arquivo _config.yml
if (params$download_material == TRUE) {
content <- glue::glue(
"theme: jekyll-theme-minimal", "\n",
"logo: assets/logo.png", "\n",
"title: {params$nome_curso}", "\n",
"show_downloads: true", "\n",
"link_material: 'https://github.com/curso-r/202403-r4ds-2/raw/main/material_do_curso.zip'",
"\n"
)
} else {
content <- glue::glue(
"theme: jekyll-theme-minimal", "\n",
"logo: assets/logo.png", "\n",
"title: {params$nome_curso}", "\n",
"show_downloads: false", "\n"
)
}
readr::write_lines(content, "_config.yml")
```
```{r}
#| eval: false
#| echo: false
CursoRutils::empacotar_material_alunos("material.txt")
```