2015-03-31 49 views

回答

1

因为你可以检查出的地图包地图。地图包中的地图功能允许您通过命名区域名称(如“世界”或“美国”)来轻松创建地图,或者您可以设置坐标

对于箭头,您可以尝试箭头()命令。您可以设置箭头开始和结束的坐标以及设置线宽。

1

扩大对@CactusWoman

建议
library(maps) 
library(igraph) 
map("usa") 
map.axes() 
igraph:::igraph.Arrows(-120, 40, -90, 45, curve=0.3, sh.col="blue") 
igraph:::igraph.Arrows(-100, 35, -110, 38, curve=0.5, sh.lwd=5, sh.col="orange") 
igraph:::igraph.Arrows可用 here

Arrow Map

附加写了

相关问题