knitr::opts_chunk$set(echo = TRUE)
reescalar <- FALSE
library(tidyverse) #path_buzon2 <- "/home/rstudio/cotecora/buzon2/" path_buzon2 <- "/home/rstudio/cotecora_pre2/buzon2/" estimaciones_files <- list.files(paste0(path_buzon2,"estimaciones"), full.names = TRUE, recursive = TRUE, include.dirs = FALSE, pattern = "*csv") razon_files <- list.files(paste0(path_buzon2,"razon"), full.names = TRUE, recursive = TRUE, include.dirs = FALSE, pattern = "*csv") multi_files <- estimaciones_files[!grepl("mendoza",estimaciones_files,fixed = TRUE)] mendoza_files <- estimaciones_files[grepl("mendoza",estimaciones_files,fixed = TRUE)]
get_df <- function(edo_id){ get_fdate <- function(x){ x <- as.character(x) nx <- as.POSIXct(paste0(substr(x,1,2)," ",substr(x,3,4),":",substr(x,5,6)),format = "%d %H:%M") } candidatos <- readr::read_csv("../data-raw/estados_candidatos_partidos_2021.csv") %>% filter(ID_ESTADO == as.numeric(edo_id)) #%>% # filter(!grepl("IC",CANDIDATO)) #quita candidatos independientes lista_candidatos <- candidatos$CANDIDATO %>% unique() lista_candidatos <- lista_candidatos[!grepl("OTROS", lista_candidatos, fixed = TRUE)] lista_candidatos <- append(lista_candidatos,"PART") file_edos <- substr(multi_files, nchar(multi_files) - 11,nchar(multi_files) - 10) multi_df <- multi_files[file_edos == edo_id] %>% map_df(., ~ read_csv(.) %>% mutate_at(vars(EN), ~ as.character(.)) %>% mutate(method="multi")) file_edos <- substr(mendoza_files, nchar(mendoza_files) - 11,nchar(mendoza_files) - 10) mendoza_df <- mendoza_files[file_edos == edo_id] %>% map_df(., ~ read_csv(.) %>% mutate(method="mendoza")) file_edos <- substr(razon_files, nchar(razon_files) - 11,nchar(razon_files) - 10) razon_df <- razon_files[file_edos == edo_id] %>% map_df(., ~ read_csv(.)) %>% mutate(PART=as.numeric("")) %>% mutate(method="razon") df <- do.call("rbind", list(multi_df,mendoza_df,razon_df)) df <- df %>% tidyr::pivot_longer(cols = all_of(lista_candidatos), names_to = "candidato", values_to = "porcentaje") %>% rename(fecha = R) %>% mutate_at(vars(fecha), get_fdate) %>% group_by(EQ,EN,fecha) %>% mutate(LMU = dplyr::case_when( LMU == 0 ~ "inf", LMU == 1 ~ "median", LMU == 2 ~ "sup")) %>% tidyr::pivot_wider(names_from = LMU, values_from = porcentaje) df } df6 <- get_df("06") df8 <- get_df("08") df16 <- get_df("16") df18 <- get_df("18") df32 <- get_df("32")
limite <- ifelse(reescalar, max(df6$median*1.05), 100) ggplot(df6, aes(fecha,median, color=factor(candidato))) + geom_line(aes(group = candidato)) + geom_errorbar(aes(ymin = inf, ymax = sup), width = 0.5) + ylim(0, limite) + facet_wrap(~method) + xlab("Hora") + ylab("Porcentaje") + labs(subtitle = "Votacion para gobernador de Colima") + theme(legend.position="bottom")
limite <- ifelse(reescalar, max(df8$median*1.05), 100) ggplot(df8, aes(fecha,median, color=factor(candidato))) + geom_line(aes(group = candidato)) + geom_errorbar(aes(ymin = inf, ymax = sup), width = 0.5) + ylim(0, limite) + facet_wrap(~method) + xlab("Hora") + ylab("Porcentaje") + labs(subtitle = "Votacion para gobernador de Chihuahua") + theme(legend.position="bottom")
limite <- ifelse(reescalar, max(df16$median*1.05), 100) ggplot(df16, aes(fecha,median, color=factor(candidato))) + geom_line(aes(group = candidato)) + geom_errorbar(aes(ymin = inf, ymax = sup), width = 0.5) + ylim(0, limite) + facet_wrap(~method) + xlab("Hora") + ylab("Porcentaje") + labs(subtitle = "Votacion para gobernador de Michoacan") + theme(legend.position="bottom")
limite <- ifelse(reescalar, max(df18$median*1.05), 100) ggplot(df18, aes(fecha,median, color=factor(candidato))) + geom_line(aes(group = candidato)) + geom_errorbar(aes(ymin = inf, ymax = sup), width = 0.5) + ylim(0, limite) + facet_wrap(~method) + xlab("Hora") + ylab("Porcentaje") + labs(subtitle = "Votacion para gobernador de Nayarit") + theme(legend.position="bottom")
limite <- ifelse(reescalar, max(df32$median*1.05), 100) ggplot(df32, aes(fecha,median, color=factor(candidato))) + geom_line(aes(group = candidato)) + geom_errorbar(aes(ymin = inf, ymax = sup), width = 0.5) + ylim(0, limite) + facet_wrap(~method) + xlab("Hora") + ylab("Porcentaje") + labs(subtitle = "Votacion para gobernador de Zacatecas") + theme(legend.position="bottom")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.