BookmarkSubscribeRSS Feed
H
Pyrite | Level 9 H
Pyrite | Level 9

I have run a proc glm model (Outcome = continuous with two continous predictors). With the Ods Graphics and Plots active it provided the below contour plot. I love components of this plot for explaining the project.

 

However, my final model has 3 continuous predictors, so SAS does not generate the plot. I would like to reproduce the plot without the color contouring and I would like the dots to be color coded based on the quartiles of the third predictor. Which this seems achievable, but i have no idea how to put on the diagonal lines that represent the dependent variable into a graph.

 

So dataset would contain

 

Y: continous variable

X1: continuous variable

X2: continuous variable

X3: continuous variable, categorized into quartile and used to shade observations on the plot.

 

 

4 REPLIES 4
H
Pyrite | Level 9 H
Pyrite | Level 9

Original Plot

 


SAS Comm Pic.jpg
Rick_SAS
SAS Super FREQ

What version of SAS are you running?

H
Pyrite | Level 9 H
Pyrite | Level 9

9.4

 

Probably original release.

H
Pyrite | Level 9 H
Pyrite | Level 9
ods graphics on  ;
proc glm data=dka_please 	PLOTS=all;
	model HOURS_PH_NORM = 
		total_fluid 
		INTITIAL_PH;
run;
ods graphics off;

 Code is above for 2 IV model. In the final graph I would like to use labels to get rid of "_" and add units to variable names.

 

Side note, your Sim book was great Rick.

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 4 replies
  • 1806 views
  • 0 likes
  • 2 in conversation