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.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1482 views
  • 1 like
  • 2 in conversation