-
Notifications
You must be signed in to change notification settings - Fork 8
/
appendix.Rmd
87 lines (65 loc) · 1.44 KB
/
appendix.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
87
\cleardoublepage
# (APPENDIX) Appendix {-}
# Raw Table Excerpts {#raw-table-excerpts}
This appendix contains excerpts of the raw data tables discussed in section \@ref(autoseg)
## Main Tables
Excerpts of the main tables are provided below.
```{r arq_casco_comp, echo = FALSE, fig.cap=""}
print_table(raw_data_excerpts$arq_casco_comp)
```
```{r, echo = FALSE}
print_table(raw_data_excerpts$arq_casco3_comp)
```
```{r, echo = FALSE}
print_table(raw_data_excerpts$arq_casco4_comp)
```
```{r, echo = FALSE}
print_table(raw_data_excerpts$premreg)
```
```{r, echo = FALSE}
print_table(raw_data_excerpts$sinreg)
```
## Auxiliary tables
Excerpts of auxiliary tables are provided below.
```{r, echo = FALSE}
print_table(raw_data$auto_cat)
```
```{r, echo = FALSE}
print_table(raw_data$auto_cau)
```
```{r, echo = FALSE}
raw_data$auto_cep %>%
head(10) %>%
print_table("auto_cep")
```
```{r, echo = FALSE}
raw_data$auto_cidade %>%
head(10) %>%
print_table("auto_cidade")
```
```{r, echo = FALSE}
print_table(raw_data$auto_cob)
```
```{r, echo = FALSE}
raw_data$auto_idade %>%
head(10) %>%
print_table("auto_idade")
```
```{r, echo = FALSE}
raw_data$auto_reg %>%
head(10) %>%
print_table("auto_reg")
```
```{r, echo = FALSE}
print_table(raw_data$auto_sexo)
```
```{r, echo = FALSE}
raw_data$auto2_grupo %>%
head(10) %>%
print_table("auto2_grupo")
```
```{r, echo = FALSE}
raw_data$auto2_vei %>%
head(10) %>%
print_table("auto2_vei")
```