An open API service indexing awesome lists of open source software.

https://github.com/curso-r/main-r4ds-2

R para Ciência de Dados II
https://github.com/curso-r/main-r4ds-2

data-science r teaching

Last synced: over 1 year ago
JSON representation

R para Ciência de Dados II

Awesome Lists containing this project

README

          

---
output: github_document
params:
curso: r4ds-2
---

# R para Ciência de Dados II

[![CC BY-NC-SA 4.0](https://mirrors.creativecommons.org/presskit/buttons/80x15/svg/by-nc-sa.svg)](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 II_.

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:

- Manipulação de dados
- Strings e regex
- Datas e fatores
- Controle de fluxo e funções
- Programação funcional
- Metaprogramação