-
Notifications
You must be signed in to change notification settings - Fork 0
/
aulas.Rmd
47 lines (40 loc) · 1.3 KB
/
aulas.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
---
title: "Cronograma das aulas do curso"
output:
html_document:
toc: false
---
```{r setup, include=FALSE, cache=FALSE, warning=FALSE}
source("setup_knitr.R")
library(knitr)
library(kableExtra)
library(dplyr)
library(tidyr)
```
Abaixo está o cronograma inicial planejado para a disciplina.
Responder aos questionários iniciais da disciplina:
- [Questionário 1](https://forms.gle/1yyMCRvTpZ8uFhEJ9) (hoje)
- [Questionário 2](https://forms.gle/XauKyUeX5s6hDEBM8) (para a próxima
aula)
```{r, eval=FALSE, include=FALSE}
## Gera a lista com as datas de todas as aulas. O resultado do último
## comando pode ser copiado direto para o documento
datas1 <- seq.Date(as.Date("2019-08-06"), as.Date("2019-12-03"),
by = "week")
datas1 <- format.Date(datas1, format = "%d/%m")
datas2 <- seq.Date(as.Date("2019-08-09"), as.Date("2019-11-29"),
by = "week")
datas2 <- format.Date(datas2, format = "%d/%m")
cat(paste0("- **", datas1, " (Ter)", "**:\n", "- **",
datas2, " (Sex)", "**:\n"))
```
```{r echo=FALSE, results='hide'}
dd <- read.table("misc/crono.csv", header = TRUE, sep = ",")
str(dd)
```
```{r echo=FALSE}
dd |>
kable(align = "cccl") |>
kable_styling(bootstrap_options = c("striped", "bordered")) |>
row_spec(c(6, 7, 14, 15), background = "lightgray")
```