Cumulative points over year on map with R ggplot2 and ggplotly
问题 I am trying to plot new locations opened over each month on a map cumulatively. I am able to create an animation with new locations each month, but not cumulatively. In other words, I want to see the new locations add to the existing ones. Here is the sample data DF <- data.frame("latitude" = c(42.29813,41.83280,41.83280,30.24354), "longitude" =c(-71.23154,-72.72642,-72.72642,-81.62098), "month" = c(1,2,3,4)) This is what I have tried usa <- ggplot() + borders("usa", colour = "gray85", fill =