-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathB2_Graficos_ggplot2_plotly.Rmd
213 lines (151 loc) · 5.9 KB
/
B2_Graficos_ggplot2_plotly.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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
---
title: "Sesión 10. Gráficos con ggplot y plotly"
author: "Isaías Morales"
date: "27 de noviembre de 2020"
output: html_document
---
```{r setup, include=FALSE}
#knitr::opts_chunk$set(include = T)
knitr::opts_knit$set(root.dir = "E:/10 SSPM_database/01 Geodatabase/05_SESNSP")
```
# Cargar librerías
> Todas las necesarias y cuidar los posibles conflictos.
```{r}
library(tidyverse)
library(ggplot2)
library(plotly)
library(lubridate)
```
```{r}
```
```{r}
## SESNSP INCIDENCIA Y VÍCTIMAS ==
sesnsp_vic <- read.csv("IDVFC_NM_sep2020.csv", sep=",", header= T, encoding = "ANSI")
glimpse(sesnsp_vic)
names(sesnsp_vic)
sesnsp_vic <- sesnsp_vic %>% mutate( total = rowSums( sesnsp_vic[, c(10:21)]) ) %>% rename (anio =Año) ## Para total anual
names(sesnsp_vic)
glimpse(sesnsp_vic)
# En la suma, si existen NA's no podrá realizarla.
tot_edad <- sesnsp_vic %>%
filter(Tipo.de.delito == "Homicidio") %>%
group_by(Rango.de.edad) %>%
summarise(total = sum(total, na.rm =T))
```
> Gráficas de R base.
```{r}
# Uno de barraspara cada categoría.
barplot(tot_edad$total,
xlab= "Rango de edades",
ylab= "Totales",
main="Distribución de edades por víctima",
names.arg=c("+ 18 años", "- 17 Años", "No Esp.", "No Id."),
col= "blue" )
# Uno de caja y bigotes dividido por rangos.
boxplot(formula = total ~ Rango.de.edad, data = tot_edad,
main="Distribución de edades por víctima",
col="blue",
horizontal = T)
```
> Ggplot2
```{r}
library(ggplot2)
# Primera ggplot (Vacía)
p <- ggplot(data=tot_edad, aes(x= Rango.de.edad, y=total, fill= Rango.de.edad ))
p
# Agregamos geometría + geom( )
p <- ggplot(data=tot_edad, aes(x= Rango.de.edad, y=total, fill= Rango.de.edad )) +
geom_bar(stat="identity")
p
# Relleno de color manual (Cuidar que hay valores continuos y discretos)
p <- p + scale_fill_manual (values =c("#499099", "#72557d", "#EC4127", "#999999"))
p
# Agregamos detalles a la gráfica
p <- p + scale_x_discrete(drop=F, name="Rango de edad") +
#scale_y_discrete(drop=F, name="Homicidios") +
theme(axis.text.y = element_text(face="bold", size=8) ,
axis.text.x = element_text(face="bold", size=10) ,
axis.title.x = element_text(size=14, face="bold"),
axis.title.y = element_text(size=14, face="bold"),
legend.position = "bottom",legend.direction = "horizontal") +
labs (fill = "Total: ")
p
```
# Gráficas interactivas con Plotly
> Plotly es una libreria más amplia, solo vamos a envolver ggplot en plotly.
```{r}
library(plotly)
library(lubridate) # Para datos tipo date.
# Se envuelve la gráfica anterior en ggplotly
ggplotly(p)
```
> Aumentando la complejidad
```{r}
# Preproceso de información.
### Una gráfica de líneas
glimpse(sesnsp_vic)
tiempo <- sesnsp_vic %>% filter(Clave_Ent ==22) %>%
select(Sexo,anio, Enero:Diciembre) %>% group_by( Sexo,anio)%>%
summarise_at(vars(Enero:Diciembre), sum) %>%
gather(key="mes", value="total",Enero:Diciembre) %>%
mutate (mes = case_when( mes == "Enero" ~ 01,
mes == "Febrero" ~ 02,
mes == "Marzo" ~ 03,
mes == "Abril" ~ 04,
mes == "Mayo" ~ 05,
mes == "Junio" ~ 06,
mes == "Julio" ~ 07,
mes == "Agosto" ~ 08,
mes == "Septiembre" ~ 09,
mes == "Octubre" ~ 10,
mes == "Noviembre" ~ 11,
mes == "Diciembre" ~ 12 ),
fecha = as.Date (paste( anio, "-", mes, "-01", sep=""))) %>%
select(fecha, Sexo, total)
head(tiempo)
```
> Gráfica de líneas
```{r}
## Básica con el geom_line
ggplot(tiempo, aes(x=fecha, y=total, fill=Sexo), colour = "black") +
geom_line()
# Por recuadro a agregar + facet_grid()
ggplot(tiempo, aes(x=fecha, y=total, fill=Sexo), colour = "black") +
geom_line() + facet_grid(rows = vars(Sexo))
```
> Spagguetti
```{r}
# Código auxiiar para resaltar
# spaguetti <- tiempo %>% mutate( highlight=ifelse(Sexo=="Mujer", "Mujer", ifelse( Sexo== "Hombre", "Hombre", "Otro"))) %>%arrange(highlight, fecha)
ggplot(tiempo, aes(x=fecha, y=total, fill=Sexo,group= Sexo,
color=Sexo, size=Sexo)) +
geom_line() +
scale_color_manual(values = c("lightgrey","#69b3a2","lightgrey")) +
scale_size_manual(values=c(0.8,0.8,0.8)) +
theme(legend.position="none") +
ggtitle("Víctimas de delitos")
```
> Áreas
```{r}
### Areas
ggplot(tiempo, aes(x = fecha, y = total, group = Sexo)) +
geom_area(aes(fill = Sexo), position = "stack") +
labs(title = "Víctimas por sexo", x = "", y = "Conteo",
subtitle = "Para comenzar") +
scale_y_continuous()
```
> Dona
```{r}
dona <- sesnsp_vic %>% filter (Clave_Ent ==22) %>%
select(Rango.de.edad,anio, total) %>%
group_by( Rango.de.edad)%>%
summarise( total = sum(total, na.rm=T) ) %>%
mutate( porc = total / sum(total),
acum = cumsum(porc),
ymin = c(0, head(acum, n=-1)))
# Se hace la gráfica
ggplot(dona, aes(ymax=acum, ymin=ymin, xmax=4, xmin=3, fill=Rango.de.edad)) +
geom_rect() +
coord_polar(theta="y") + # Try to remove that to understand how the chart is built initially
xlim(c(2, 4)) # Try to remove that to see how to make a pie chart
```