-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cronograma.qmd
113 lines (107 loc) · 5.29 KB
/
cronograma.qmd
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
---
title: "Cronograma"
format: html
editor: visual
---
```{r}
#| echo: false
cronograma <- tibble::tibble(
ordem = numeric(),
horario = character(),
descricao = character(),
palestrantes = character(),
link_apresentacao = character()
) |>
tibble::add_row(
ordem = 1,
horario = "08h30 - 09h00",
descricao = "Credenciamento e café comunitário"
) |>
tibble::add_row(
ordem = 2,
horario = "09h00 - 09h10",
descricao = "Abertura: Insper",
palestrantes = "<a href='https://www.linkedin.com/in/jucilene-santos-82518524/' target='_blank'>Jucilene Lopes</a> (<a href='https://www.insper.edu.br/pesquisa-e-conhecimento/centro-de-ciencia-de-dados/' target='_blank'>Centro de Ciência de Dados do Insper (CCD)</a>)") |>
tibble::add_row(
ordem = 3,
horario = "09h10 - 09h30",
descricao = "Apresentação sobre a Open Knowledge Brasil",
palestrantes = "<a href='https://www.linkedin.com/in/hsvab/' target='_blank'>Haydee Svab</a> (<a href='https://www.ok.org.br/' target='_blank'>Open Knowledge Brasil</a> + <a href='https://rladies-sp.org/' target='_blank'>R-Ladies São Paulo</a>)",
link_apresentacao = "https://raw.githubusercontent.com/R-Ladies-Sao-Paulo/2024-03-open-data-day/main/apresentacoes/okbr.pdf") |>
tibble::add_row(
ordem = 4,
horario = "09h30 - 09h50",
descricao = "Apresentação sobre a R-Ladies São Paulo",
palestrantes = "<a href='https://www.linkedin.com/in/tatyane-paz-dominguez-264224213/' target='_blank'>Tatyane Paz Dominguez</a> (<a href='https://rladies-sp.org/' target='_blank'>R-Ladies São Paulo</a> + <a href='https://www.iag.usp.br/' target='_blank'>IAG/USP</a>)",
link_apresentacao = "https://raw.githubusercontent.com/R-Ladies-Sao-Paulo/2024-03-open-data-day/main/apresentacoes/rladies.pdf") |>
tibble::add_row(
ordem = 5,
horario = "09h50 - 10h20",
descricao = "Apresentação: O que é Open Data Day?",
palestrantes = "<a href='https://www.linkedin.com/in/beatrizmilz/' target='_blank'>Beatriz Milz</a> (<a href='https://rladies-sp.org/' target='_blank'>R-Ladies São Paulo</a> + <a href='https://embaixadoras.ok.org.br/' target='_blank'>Embaixadoras</a>)",
link_apresentacao = "https://r-ladies-sao-paulo.github.io/2024-03-open-data-day/slide-open-data-day.html") |>
tibble::add_row(
ordem = 6,
horario = "10h20 - 12h00",
descricao = "Apresentação: Como buscar dados na Base dos Dados? + Prática com R",
palestrantes = "<a href='https://www.linkedin.com/in/laura-amaral-574b73121/' target='_blank'>Laura Amaral</a> (<a href='https://basedosdados.org/' target='_blank'>Base dos Dados</a>)",
link_apresentacao = "https://docs.google.com/presentation/d/1WGNutn_V9QxrcQ4XOItVf0x6MF9F-mFd4Ub3uwsYGps/edit?usp=sharing") |>
tibble::add_row(
ordem = 7,
horario = "12h00 - 13h30",
descricao = "Almoço") |>
tibble::add_row(
ordem = 8,
horario = "13h30 - 13h45",
descricao = "Apresentação: Women in Tech",
palestrantes = "<a href='https://www.linkedin.com/in/grazielatonin/' target='_blank'>Graziela Tonin</a> (<a href='https://www.insper.edu.br/noticias/graziela-tonin-assume-lideranca-do-women-in-tech/' target='_blank'>Women in Tech</a>)",
link_apresentacao = "https://raw.githubusercontent.com/R-Ladies-Sao-Paulo/2024-03-open-data-day/main/apresentacoes/WIT.pdf") |>
tibble::add_row(
ordem = 9,
horario = "13h45 - 14h00",
descricao = "Apresentação sobre as Embaixadoras de Inovação Cívica",
palestrantes = "<a href='https://www.linkedin.com/in/camiladacruz-cs/' target='_blank'>Camila da Cruz S. de Souza</a> (<a href='https://embaixadoras.ok.org.br/' target='_blank'>Embaixadoras</a>) <br><br>
<a href='https://www.linkedin.com/in/oliviaboretti/' target='_blank'>Olivia Boretti</a> (<a href='https://embaixadoras.ok.org.br/' target='_blank'>Embaixadoras</a>)",
link_apresentacao = "https://raw.githubusercontent.com/R-Ladies-Sao-Paulo/2024-03-open-data-day/main/apresentacoes/embaixadoras.pdf") |>
tibble::add_row(
ordem = 10,
horario = "14h00 - 16h00",
descricao = "Prática: Explorando dados obtidos na plataforma Base dos Dados",
link_apresentacao = "https://docs.google.com/document/d/1JFKqawVtjCkblMz-i5ZAmwcWwEFsWPuqO6GDjek4RSs/edit?usp=sharing") |>
tibble::add_row(
ordem = 11,
horario = "16h00 - 16h30",
descricao = "Sorteio e encerramento")
cronograma |>
dplyr::mutate(
link_apresentacao = ifelse(
!is.na(link_apresentacao),
paste0("<a href='", link_apresentacao, "' target='_blank'>Acesso</a>"),
""
)
) |>
dplyr::arrange(ordem) |>
dplyr::select(-ordem) |>
reactable::reactable(
pagination = FALSE,
bordered = TRUE,
highlight = TRUE,
columns = list(
palestrantes = reactable::colDef(
name = "Palestrantes", html = TRUE
),
horario = reactable::colDef(name = "Horário", maxWidth = 100),
descricao = reactable::colDef(name = "Descrição"),
link_apresentacao = reactable::colDef(name = "Apresentação", html = TRUE, maxWidth = 140, align = "center")
),
rowStyle = function(index){
if(index %in% c(1, 7)){
list(background = "#ecd7ed")
} else if (index %% 2 == 0) {
list(background = "#f2f2f2")
} else {
list(background = "white")
}
}
)
```