BookmarkSubscribeRSS Feed
Anita_n
Pyrite | Level 9

Dear all, 

I got the graph to look like this :

Anita_n_0-1641737474756.png

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

1 REPLY 1
BrunoMueller
SAS Super FREQ

You can use the TEXT statement like so:

text x=longc y=latc text=id1name /  position=topright;

SAS Innovate 2025: Register Now

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!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 362 views
  • 0 likes
  • 2 in conversation