使用proc gmap时从地图中删除空格

时间:2017-12-19 18:00:40

标签: sas

我在sas中使用以下代码:

goptions reset=all border ;
goptions colors=(yellow steel purple pink red blue cyan orange green gray 
black);

title1 "Congo";
title2 "11 Regions";
footnote j=r "Congo ";


proc gmap map=mapsgfk.dr_congo data=mapsgfk.dr_congo all density=6;
 id id1;  
 choro id1/discrete;run;
quit;

并生成以下地图:enter image description here

如何删除某些区域内的空白区域?

1 个答案:

答案 0 :(得分:3)

地图数据在ID级别被分段。 ID1值是ID的截断。白色空间'是由于某个段与其不属于的ID相关联。尝试:

proc gmap 
  map=mapsgfk.dr_congo data=mapsgfk.dr_congo all density=6
;

  * simpler statements per DCR comment, removed format;
  id id;
  choro id1 / discrete;
run;
quit;

我相信在用某种颜色绘制湖泊方面可能仍存在一些问题。