metrodata <- fread("fmhpi2.txt")
metrodata$date<-as.Date(metrodata$date, format="%m/%d/%Y")
#Compute monthly house price appreciation
metrodata<-metrodata[,hpa1:=c(NA,((1+diff(hpi)/hpi)))-1,by=metro]
oopt = ani.options(interval = 0.1)
saveGIF({for (yy in 2000:2016) for(mm in seq(1,12,1)) { {
if (yy>=2016 & mm>3) {mm<-3}
g<-
ggplot(data=metrodata[(year==yy) & month==mm ], aes(x=metro, y=hpa1,color=month, label=date,group=metro))+
geom_point(alpha=0.6,size=2) +
scale_y_continuous(limits=c(-.052,.052), labels=percent, breaks=seq(-.05,.05,.01))+
theme_minimal() +
geom_abline(intercept=0,slope=0, alpha=0.5)+
scale_colour_gradient2(low="blue",mid="red", high="blue", limits=c(1,12)) +
labs(y="House price index (Dec 2000 =100, NSA), Monthly % Change", x="",
title="Metro house price dynamics",
subtitle=paste(as.character(metrodata[year==yy & month==mm]$date,format="%b-%Y")),
caption="@lenkiefer Source: Freddie Mac house price index, each dot a metro, colored by month")+
theme(plot.title=element_text(size=14))+
theme(plot.caption=element_text(hjust=0,vjust=1,margin=margin(t=10),size=9))+
theme(plot.margin=unit(c(0.25,0.25,0.25,0.25),"cm"))+
theme(legend.justification=c(0,0),
legend.position=c(.7,.2),
text=element_text(size=10))+
theme(legend.position="none")+
theme( axis.text.x=element_blank(),axis.ticks=element_blank())+
theme(panel.grid.major.x=element_blank())+
theme(axis.text=element_text(size=6))
print(g)
ani.pause()
}
}
for (i2 in 1:2) {print(g)
ani.pause() }
},movie.name="metro_seasons.gif",ani.width = 650, ani.height = 650)