-
Notifications
You must be signed in to change notification settings - Fork 7
/
veintiocho.R
36 lines (26 loc) · 1.04 KB
/
veintiocho.R
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
# #30díasdegráficos día 28
# Visualización matrices origen-destino Santiago
# http://www.dtpm.gob.cl/index.php/documentos/matrices-de-viaje
# Autora: Stephanie Orellana (@sporella)
# Cargar librerías --------------------------------------------------------
library(tidyverse)
library(chorddiag) #devtools::install_github("mattflor/chorddiag")
# Cargar y procesar datos -------------------------------------------------
datos <- read_csv2("data/matriz_viajes.csv") %>%
filter(MediaHora == 27000) %>%
select(1,2,4) %>%
mutate_if(is.character, str_to_title)
datos_wider <- datos %>%
spread(value = ViajeLaboralPromedio , key= ComunaBajada, drop = F, fill = 0) %>%
column_to_rownames("ComunaSubida") %>%
as.matrix()
# Visualización -----------------------------------------------------------
name <- "Origen y Destino de viajes en Santiago. 7:30 AM"
chorddiag(
datos_wider,
groupnameFontsize = 8,
ticklabelFontsize = 6,
tickInterval = 500,
chordedgeColor = NA,
categoryNames = c("@sporella", name),categorynameFontsize = 10
)