-
Notifications
You must be signed in to change notification settings - Fork 2
/
01_plotly.Rmd
144 lines (113 loc) · 4.83 KB
/
01_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
# Exploración interactiva de datos con plotly
Author: Mike Jeziorski
Date: 5/13/2021
_El código de R de este archivo está disponbie vía [GitHub](https://github.com/ComunidadBioInfo/minicurso_mayo_2021/blob/main/01_plotly.R)._
## Introducción a plotly
Link a la presentación [Introducción a plotly.](https://comunidadbioinfo.github.io/minicurso_mayo_2021/introduccion.html#1)
## Graficando datos de palmerpenguins con plotly
```{r}
# install.packages(c("tidyverse", "plotly", "palmerpenguins"))
library(palmerpenguins) # juego de datos científicos
library(tidyverse) # incluye dplyr y ggplot2
library(plotly)
```
```{r}
glimpse(penguins)
summary(penguins)
```
```{r}
penguins_hm <- penguins %>%
filter(!is.na(sex)) %>%
dplyr::count(species, island, sex) %>%
ggplot(aes(x = sex, y = species, fill = n)) +
geom_tile() +
facet_grid(~ island) +
theme_classic() +
labs(title = "Distribution of penguins")
```
```{r}
ggplotly(penguins_hm)
```
```{r}
penguins_sp <- penguins %>%
filter(!is.na(sex)) %>%
ggplot(aes(x = bill_length_mm, y = body_mass_g, shape = sex, color = species,
text = paste0("Sex: ", sex,
"\nIsland: ", island,
"\nYear: ", year))) +
geom_point() +
scale_shape_manual(values = c(1, 16)) +
labs(x = "Bill length (mm)", y = "Body mass (g)")
```
```{r}
plotly::ggplotly(penguins_sp, tooltip = "text")
```
```{r}
penguins_sp_i <- penguins %>%
filter(!is.na(sex)) %>%
plotly::plot_ly(x = ~bill_length_mm, y = ~body_mass_g, color = ~species,
type = "scatter", mode = "markers")
```
```{r}
# install.packages("htmlwidgets")
library(htmlwidgets)
htmlwidgets::saveWidget(penguins_sp_i, "penguins_scatterplot.html")
```
## Graficando datos de COVID con plotly
Datos del la Secretaría de Salud, Gobierno de México
Fuente de los datos: <https://datos.gob.mx/busca/dataset/informacion-referente-a-casos-covid-19-en-mexico>
Datos crudos: <https://www.gob.mx/salud/documentos/datos-abiertos-152127>
El archivo "qro_raw_210513.csv" contiene los datos para el 13 de mayo de 2021, filtrado para los residentes del estado de Querétaro.
```{r}
qro_raw <- readr::read_csv("qro_raw_210513.csv")
```
```{r, warning=FALSE}
qro_covid_pos <- qro_raw %>%
mutate(sexo = case_when(SEXO == 1 ~ "Mujer",
SEXO == 2 ~ "Hombre",
SEXO == 99 ~ NA_character_),
tipo_paciente = case_when(TIPO_PACIENTE == 1 ~ "Ambulatorio",
TIPO_PACIENTE == 2 ~ "Hospitalizado",
TIPO_PACIENTE == 99 ~ NA_character_)) %>%
filter(RESULTADO_LAB == 1) %>%
ggplot(aes(x = FECHA_INGRESO, fill = as.factor(tipo_paciente))) +
geom_bar() +
labs(x = "Fecha de visita", y = "Total",
title = "Pacientes positivos en el Edo. de Querétaro (muertos en morado)",
caption = "Fuente: Dirección General de Epidemiología, Gobierno de México") +
scale_fill_manual(name = "Tipo de paciente",
labels = c("Ambulatorio", "Hospitalizado"),
values = c("blue", "red")) +
geom_bar(aes(x = FECHA_DEF), fill = "purple") +
theme_classic()
```
```{r, warning=FALSE}
ggplotly(qro_covid_pos)
```
```{r, warning=FALSE}
def_emb <- filter(qro_raw, RESULTADO_LAB == 1, EMBARAZO == 1, !is.na(FECHA_DEF)) %>%
nrow()
qro_covid_emb <- qro_raw %>%
mutate(sexo = case_when(SEXO == 1 ~ "Mujer",
SEXO == 2 ~ "Hombre",
SEXO == 99 ~ NA_character_),
tipo_paciente = case_when(TIPO_PACIENTE == 1 ~ "Ambulatorio",
TIPO_PACIENTE == 2 ~ "Hospitalizado",
TIPO_PACIENTE == 99 ~ NA_character_)) %>%
filter(RESULTADO_LAB == 1, EMBARAZO == 1) %>%
ggplot(aes(x = FECHA_INGRESO, y = EDAD, color = as.factor(TIPO_PACIENTE))) +
geom_point() +
labs(x = "Fecha de ingreso", y = "Edad",
title = "Mujeres embarazadas positivas para el virus en Edo. de Querétaro",
subtitle = paste0("Número de defunciones: ", def_emb),
caption = "Fuente: Dirección General de Epidemiología, Gobierno de México") +
scale_color_manual(name = "Tipo de paciente",
labels = c("Ambulatoria", "Hospitalizada"),
values = c("blue", "red")) +
ylim(c(0, 50)) +
theme_classic()
```
```{r}
ggplotly(qro_covid_emb, tooltip = c("FECHA_INGRESO", "EDAD"))
```
<a href="https://comunidadbioinfo.github.io/es/post/cs_and_s_event_fund_award/#.YJH-wbVKj8A"><img src="https://comunidadbioinfo.github.io/post/2021-01-27-cs_and_s_event_fund_award/spanish_cs_and_s_award.jpeg" width="400px" align="center"/></a>