我想知道如何制作ggplot动画地图? 我正在尝试逐步建立COVID可视化。
为您展示一些示例,这是我自己的代码:
#Mortes
ggplot() +
geom_sf(data=ontem, aes(fill=deaths), color="#FEBF57", size=.15, show.legend = TRUE) +
labs(title = "Mortes por COVID",size=8) +
scale_fill_distiller(palette = "BrBG",
name= "Mortes Confirmadas", limits=c(min(ontem$deaths),max(ontem$deaths)))+
theme_void() + theme(plot.title = element_text(hjust = 0.5))
options(scipen=10000)
我想展示COVID死亡人数随时间的演变。在数据框中,有一个名为“日期”的列,其日期时间值类似于“ 2020-07-21”。