Dear all,
I got the graph to look like this :
Is there any way to get the names of the ploygon in the graph? In this case id1name (should be bold) and display the id boundaries.
here is my code:
*create mapdata;
proc sql;
create table germany as select a.*, b.id1name from mapsgfk.germany a natural join mapsgfk.germany_attr b
where a.id = b.id;
quit;
proc gremove data=germany out=germany_gremove;
by id1;
id id;
run;
*create Map;
proc sgmap mapdata=germany_gremove maprespdata=respdata plotdata=respdata noautolegend;
openstreetmap;
choromap id1/ mapid=id1 id=id1 name="choro" lineattrs=(thickness=1 color=graybb);
bubble x=longc y=latc size= no_of_cases / bradiusmin=3px bradiusmax=8px fill fillattrs=(color=darkred) outline name="bubl";
Keylegend "bubl";
run;
and the used data
You can use the TEXT statement like so:
text x=longc y=latc text=id1name / position=topright;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.