- https://infographics.channelnewsasia.com/covid-19/map.html
- https://co.vid19.sg/map (SG)
- https://experience.arcgis.com/experience/685d0ace521648f8a5beeeee1b9125cd (WHO)
- https://www.coromap.info/ (JP)
- https://chp-dashboard.geodata.gov.hk/covid-19/en.html (HK)
- https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6 (JHU)
We can make this file beautiful and searchable if this error is corrected: It looks like row 4 should actually have 1 column, instead of 5 in line 3.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Participación Ciudadana Elecciones Congresales Extraordinarias 2020 | |
| #Ubigeo: TODOS | |
| #ACTUALIZADO EL 27/01/2020 A LAS 12:08 h | |
| #,PARTICIPACIÓN,,AUSENTISMO, | |
| "DEPARTAMENTO/CONTINENTE","TOTAL ASISTENTES","% TOTAL ASISTENTES","TOTAL AUSENTES","% TOTAL AUSENTES","ELECTORES HÁBILES" | |
| "AFRICA","0","0.00","0","0.00","0" | |
| "AMAZONAS","157,470","63.68","89,827","36.32","247,297" | |
| "AMERICA","0","0.00","0","0.00","0" | |
| "ANCASH","570,090","73.25","208,165","26.75","778,255" | |
| "APURIMAC","200,529","69.24","89,105","30.76","289,634" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ref: https://github.com/juliasilge/tidytext/issues/17 | |
| library(dplyr) | |
| library(hunspell) | |
| library(SnowballC) | |
| w <- tibble( | |
| palabras = c( | |
| "celebra", | |
| "celebré", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse) | |
| library(survminer) | |
| library(survival) | |
| library(cowplot) | |
| library(gridExtra) | |
| fit <- survfit(Surv(futime, fustat) ~ rx, data = ovarian) | |
| p1 <- ggsurvplot( | |
| fit, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # based on https://gist.github.com/andrewheiss/5cb3ec07be2b1bf5dea8806dfaa755e4 | |
| # With minor tweaks and translation to Spanish | |
| library(tidyverse) | |
| library(showtext) | |
| font_add_google("Fira Sans Condensed", "firasanscond") | |
| font_add_google("Fira Sans Extra Condensed", "firasansextracond") | |
| showtext_auto() |
Using the CSV listed in https://twitter.com/hadleywickham/status/1351298997483425792?s=20
ICS file created on 2021-01-18 (PET)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse) | |
| library(rvest) | |
| library(V8) | |
| url <- "https://www.greatschools.org/new-york/new-york/schools/?view=table" | |
| xpath <- "/html/head/script[1]" | |
| ctx <- v8() | |
| txt <- read_html(url) %>% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| library(tidyverse) | |
| base_url <- "https://ronderos.pe/datasette/elecciones_peru_2021/presidencial.csv?_size=1000&_next={next_val}" | |
| spec <- cols( | |
| .default = col_integer(), | |
| mesa = col_character(), | |
| v2_OBSERVACION = col_character(), | |
| v2_OBSERVACION_TXT = col_character(), | |
| v1_OBSERVACION = col_character(), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Test done to check/answer the question at https://stackoverflow.com/questions/68211842/why-is-vroom-so-slow | |
| # Downloaded CSV file on 2021-07-01 from: | |
| # https://www.datosabiertos.gob.pe/dataset/vacunaci%C3%B3n-contra-covid-19-ministerio-de-salud-minsa | |
| # and then compressed it with gzip | |
| # $ zcat vacunas_covid.csv.gz | wc -l | |
| # 7311644 | |
| library(readr) | |
| library(vroom) | |
| library(data.table) |
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 8 columns, instead of 5 in line 2.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id,name,description,country,profession,topics,img,url | |
| 1549,Pedro Chávez Zavala,"Médico militar egresado de la Escuela Médico Militar en 1988. Ostenta el grado de coronel. Egresado del Colegio Nacional de Acupuntura en 1993. Tiene un diplomado en Medicina Cuántica. Es presidente de la Coalición Mundial Salud y Vida (COMUSAV) Agrupación México, la cual promueve el uso del dióxido de cloro, así como terapias “bioenergéticas”.",México,Médico,"Falsas terapias covid-19,Propagación del virus",https://saludconlupa.com/media/images/Pedro-Chavez.2e16d0ba.fill-400x400.jpg,https://saludconlupa.com/series/desinformantes/pedro-chavez-zavala/ | |
| 1571,Atilio Fariña del Río,"Presidente del Consorcio Paraguayo de Médicos Católicos y de la Federación de Asociaciones por la Vida y la Familia. En el 2005, participó en representación de la Conferencia Episcopal Paraguaya en un congreso organizado por el Consejo Pontificio para la Pastoral de la Salud, que reunió a científicos, filósofos y teólogos en el Vaticano.",Paraguay,Médico gin |