-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
88 lines (70 loc) · 1.1 KB
/
index.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
---
title: "Mercado de passageiros"
---
```{r, child="_chunk_opts.Rmd"}
```
## {.tabset .tabset-pills}
### Passageiros transportados (em milhões)
<br>
#### **Mercado agregado**
```{r}
yearly_market_plots$pax
monthly_market_plots$pax
```
<br>
<br>
#### **Por companhias**
```{r}
monthly_dom_companies_plots$pax
monthly_intl_companies_plots$pax
```
<br>
### Demanda (assentos-km)
<br>
#### **Mercado agregado**
```{r}
yearly_market_plots$rpk
monthly_market_plots$rpk
```
<br>
<br>
#### **Por companhias**
```{r}
monthly_dom_companies_plots$rpk
monthly_intl_companies_plots$rpk
```
<br>
### *Market-share*
<br>
#### **Mercado agregado**
```{r}
share_plots$dom_pax
share_plots$intl_pax
```
<br>
<br>
#### **Por companhias**
```{r}
monthly_dom_companies_plots$pax_share
monthly_intl_companies_plots$pax_share
```
<br>
### *Load factor* (em %)
```{r}
yearly_market_plots$load
monthly_market_plots$load
```
<br>
### Decolagens
<br>
#### **Mercado agregado**
```{r}
yearly_market_plots$departures
monthly_market_plots$departures
```
<br>
<br>
#### **Por companhias**
```{r}
monthly_dom_companies_plots$departures
```