我已经在R中使用ggplot2制作了地图。我现在正尝试使用plotly,以便使其更具交互性(尤其是使用工具提示)。但是,我尝试做的一切最终都使我在RStudio中获得了空白的查看器面板。我可以用绘图方式查看其他内容(例如基本折线图),但不能查看地图。
为了具有可复制性,我还尝试使用从here中获取代码的基本地图。
library(ggplot2)
library(plotly)
usa <- map_data("usa")
states <- map_data("state")
usa_map <- ggplot(data = states) +
geom_polygon(aes(x = long, y = lat, fill = region, group = group), color = "white") +
coord_fixed(1.3) +
guides(fill=FALSE)
这为我绘制了一张地图,正是我想要的地图。
接下来,到目前为止,我已经尝试过:
ggplotly(usa_map)
这:
usa_map_view <- plotly_build(usa_map)
usa_map_view
但这两个都让我空白了,没有任何错误消息。
有什么想法我要去哪里吗?
答案 0 :(得分:1)