BookmarkSubscribeRSS Feed
sfo
Quartz | Level 8 sfo
Quartz | Level 8

Hi,

 

Is there a way I can color code the Y-axis data points used in proc gplot for example:

 

ID YData XData

101 10 10

101 20 20

101 30 30

102 10 40

102 20 50

102 30 60

 

I am using proc gplot YData * XData = ID and would like to color code each YData i.e. value 10 gets color blue, value 20 gets color red, value 30 gets color orange.

 

Also, all the data points for each ID should be connected using a black line.

4 REPLIES 4
DanH_sas
SAS Super FREQ

What version of SAS are you using?

sfo
Quartz | Level 8 sfo
Quartz | Level 8

I am using 9.2 and prefer to use Proc Gplot

 

Thanks

DanH_sas
SAS Super FREQ

See if this will work for you:

 

data test;
input ID YData XData;
cards;
101 10 10
101 20 20
101 30 30
102 10 40
102 20 50
102 30 60
;
run;

symbol1 i=join c=black v=none;
symbol2 i=join c=black v=none;
symbol3 i=none v=dot c=blue;
symbol4 i=none v=dot c=red;
symbol5 i=none v=dot c=orange;
proc gplot data=test;
plot ydata*xdata=id;
plot2 ydata*xdata=ydata;
run;
sfo
Quartz | Level 8 sfo
Quartz | Level 8

Thanks for the solution. It worked.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 4 replies
  • 2592 views
  • 1 like
  • 2 in conversation