https://github.com/curso-r/main-r4ds-3
R para Ciência de Dados III
https://github.com/curso-r/main-r4ds-3
data-science r teaching
Last synced: over 1 year ago
JSON representation
R para Ciência de Dados III
- Host: GitHub
- URL: https://github.com/curso-r/main-r4ds-3
- Owner: curso-r
- License: other
- Created: 2022-10-03T22:08:07.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-07T00:43:26.000Z (about 3 years ago)
- Last Synced: 2025-01-31T14:29:17.701Z (over 1 year ago)
- Topics: data-science, r, teaching
- Language: HTML
- Homepage: https://loja.curso-r.com/r-para-ciencia-de-dados-3.html
- Size: 35.4 MB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
params:
curso: r4ds-3
---
# R para Ciência de Dados III
[](https://creativecommons.org/licenses/by-nc-sa/4.0/)
```{r, include = FALSE}
knitr::opts_chunk$set(collapse = TRUE, comment = "#>")
```
Repositório principal do curso _R para Ciência de Dados III_.
Inscreva-se no curso: https://loja.curso-r.com/
**Acesse o material completo do curso escolhendo uma das turmas abaixo**.
```{r, echo = FALSE}
params$curso |>
stringr::str_c('org:curso-r in:name "', ... = _, '"') |>
gh::gh("/search/repositories?q={query}", query = _, per_page = 100) |>
purrr::pluck("items") |>
purrr::map_chr("name") |>
tibble::tibble(repo = _) |>
dplyr::filter(!stringr::str_detect(repo, "main")) |>
dplyr::mutate(
date = repo |>
stringr::str_extract("^[0-9]+") |>
lubridate::ym(),
Turma = stringr::str_c(
lubridate::month(date, TRUE, FALSE, "pt_BR.UTF-8"),
" de ",
lubridate::year(date)
),
Material = stringr::str_c("curso-r.github.io/", repo),
Material = stringr::str_c("[", Material, "](https://", Material, ")"),
GitHub = stringr::str_c("github.com/curso-r/", repo),
GitHub = stringr::str_c("[", GitHub, "](https://", GitHub, ")"),
) |>
dplyr::arrange(dplyr::desc(date)) |>
dplyr::select(Turma, Material, GitHub) |>
knitr::kable()
```
## Plano de aula
6 aulas (18h) com os temas:
- Organização de projetos
- Faxina de dados
- Conexão com bancos de dados
- Git e GitHub
- Pacotes
- Integração