我正在使用R并且正在尝试使用-keepattributes EnclosingMethod
-keepattributes InnerClasses
-dontoptimize
创建一个等值区域地图。我的代码就像:
GISTools
choropleth(us_state, us_state$smallbiz1998, shades)
plot(us_interstate, add = TRUE)
是美国各州的地图,us_state
是州际公路的地图。
我希望美国各州的边界都是灰色的。我怎样才能做到这一点?
choropleth文档表明您可以指定us_interstate
。但是,当我尝试Additional parameters to be passed on to the plot method for sp.
时,它会抛出错误。
(如果它将州际高速公路改为灰色,那很简单,只需将第二行更改为choropleth(us_state, us_state$smallbiz1998, shades, col = "gray")
)。
答案 0 :(得分:0)
将第一行更改为choropleth(mn_county, mn_county$smallbiz1998, shades, border = "gray")