-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
86 lines (72 loc) · 2.74 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
---
output: github_document
---
## Sobre o curso
O objetivo do curso de Introdução à pesquisa Jurimétrica é apresentar e discutir a aplicação de métodos quantitativos no Direito. A ideia do curso é tratar dos limites de aplicação e elementos básicos de pesquisa quantitativa, com aplicações em temas do Direito.
```{r}
#| echo: FALSE
tibble::enframe(fs::dir_ls("slides", glob = "*.html")) |>
dplyr::filter(
stringr::str_detect(name, "a[0-9]{0,2}_"),
!stringr::str_detect(name, "introducao")
) |>
dplyr::transmute(
aula = stringr::str_extract(value, "(?<=_)[a-z_A-Z]+"),
slide = glue::glue("[{aula}](https://abjur.github.io/curso_intro_jurimetria/{name})")
) |>
knitr::kable(col.names = c("Aula", "Link"))
```
## Informações importantes
- Livro: [https://livro.abj.org.br](https://livro.abj.org.br)
- Blog: [https://lab.abj.org.br](https://lab.abj.org.br)
- Fórum: [https://forum.abj.org.br](https://forum.abj.org.br)
## Material extra
Referências extras comentadas nas aulas.
```{r}
#| message: false
#| echo: false
tibble::tibble(
nome = c(
"Case ABJ - Varas empresariais",
"Pesquisas realizadas pelo Departamento de Pesquisas Judiciárias (DPJ) do CNJ",
"Tese do Marcelo Guedes Nunes",
"Lee Loevinger (1949)",
"Lee Loevinger (1961)",
"Lee Loevinger (1963)",
"Society for Empirical Legal Studie (SELS)",
"Case ABJ - Drogas",
"Cases ABJ",
"Bases de dados da ABJ utilizado no curso",
"Cursos sobre R",
"Exemplo de Dashboard (Observatório da Litigiosidade)",
"Materiais de web scraping",
"Priest & Klein (1984)"
),
links = c(
"https://abj.org.br/pesquisas/varas-empresariais/",
"https://www.cnj.jus.br/pesquisas-judiciarias/",
"https://tede2.pucsp.br/handle/handle/5978",
"https://core.ac.uk/download/pdf/217207244.pdf",
"https://core.ac.uk/download/217207250.pdf",
"https://scholarship.law.duke.edu/lcp/vol28/iss1/2/",
"https://community.lawschool.cornell.edu/sels/",
"https://abj.org.br/pesquisas/drogas-stf/",
"https://abj.org.br/pesquisas/",
"https://github.com/abjur/abjData",
"https://loja.curso-r.com/",
"https://abjur.shinyapps.io/obsCIEE",
"https://curso-r.github.io/main-web-scraping/",
"https://www.rand.org/content/dam/rand/pubs/reports/2006/R3032.pdf"
)
) |>
knitr::kable()
# googlesheets4::gs4_deauth()
# googlesheets4::gs4_auth("[email protected]")
# "1TX72A4wiJqc31XvDqhVqpIBfH5YN4UpU0DmsznWESSY" |>
# googlesheets4::read_sheet(turma) |>
# dplyr::filter(aula <= num_aula) |>
# dplyr::mutate(link = glue::glue("[{desc}]({purrr::map_chr(url, utils::URLencode)})")) |>
# dplyr::select(-desc, -url) |>
# dplyr::arrange(aula) |>
# knitr::kable(col.names = c("Aula", "Tema", "Descrição"))
```