Analisis geoespacial con R, de la epidemia Covid19 en Santiago
DataIntelligence
15-05-2020
library(gganimate)
e <- ggplot(data_rm)+
geom_sf(aes(fill=Casos_Acumulados))+
transition_manual(Fec)+
labs(subtitle = "DÃa transcurrido de la pandemia en Santiago: {current_frame}")
animate(e)