BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mduarte
Quartz | Level 8

Hi, 

 

I would like to define which value corresponds to neutral in the colour ramp for a bubble chart.  Does anyone know how I could achieve this?  E.g. For the following sample code, assume I wish to make weight 80 to be neutral colour (i.e. white)... 

Note that in some instances the colour variable the desired neutral colour value will be less than the midpoint, an in others greater than the midpoint.

 

proc sgplot data=sashelp.class;
bubble x=age y=height size=age / bradiusmin=0 
transparency=0.5 colorresponse=weight
colormodel=(blue white red);
run;

All help much appreciated

Thanks,

Marie

1 ACCEPTED SOLUTION

Accepted Solutions
DanH_sas
SAS Super FREQ

The best way to do that is to use a range attrmap. If you need to change the neutral value, you can do it in the data step.

 

data attrmap;
retain id "myid";
input min $ 1-5 max $ 7-11 excludemin $ 13-17 excludemax $ 19-23 colormodel1 $ 25-29 colormodel2 $ 31-35;
cards;
_min_ 80    false true  blue  white
80    _max_ false false white red
;
run;

proc sgplot data=sashelp.class rattrmap=attrmap;
bubble x=age y=height size=age / bradiusmin=0
transparency=0.5 colorresponse=weight rattrid=myid;
run;

View solution in original post

2 REPLIES 2
DanH_sas
SAS Super FREQ

The best way to do that is to use a range attrmap. If you need to change the neutral value, you can do it in the data step.

 

data attrmap;
retain id "myid";
input min $ 1-5 max $ 7-11 excludemin $ 13-17 excludemax $ 19-23 colormodel1 $ 25-29 colormodel2 $ 31-35;
cards;
_min_ 80    false true  blue  white
80    _max_ false false white red
;
run;

proc sgplot data=sashelp.class rattrmap=attrmap;
bubble x=age y=height size=age / bradiusmin=0
transparency=0.5 colorresponse=weight rattrid=myid;
run;
mduarte
Quartz | Level 8

That's excellent. Thank-you!

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1026 views
  • 1 like
  • 2 in conversation