I was trying to create a Plotly map in R using plot_geo. I wasn't getting any errors, but the Viewer was returning a blank map. The Plotly mode bar was showing up, but everything else was blank.
I couldn't even get the code below from the plot_geo help page to work:
library(plotly)
library(dplyr)
map_data("world", "canada") %>%
group_by(group) %>%
plot_geo(x = ~long, y = ~lat) %>%
add_markers(size = I(1))
Has anyone else ran into this problem? I haven't had any trouble with plotly in R in the past.