How can I save a gvis object from googleVis to png? ggvis has export_png but that doesn't work for googleVis.
I saw several asking this but is there really no way?
test_data <- data.frame(count=c(1,2,5),group=c("Australia","Austria","China"))
p <- gvisGeoMap(test_data,locationvar='group',numvar='count',options=list(dataMode='regions',colors="['0x0000ff', '0xff0000']"))
plot(p)