BookmarkSubscribeRSS Feed
tmtemples
Fluorite | Level 6

I was asked to add the rsquared and p-values to a graph that I made using proc sgplot.  I found an example that saves the rsquared from proc reg into a macro variable and then prints it in a footnote, but I am not sure that proc reg and the regression in proc sgplot are using the same methods and have the same output. 

 

Can someone confirm whether they are?  If not, is there a way to print those values within proc sgplot?

 

Here's the code I'm currently using:

 

PROC REG DATA = CAUTI_QTR_SIR OUTEST = REG_OUT ;
   MODEL SIR = QUARTER / SELECTION = RSQUARE  ;
RUN ;

DATA _NULL_ ;
   SET REG_OUT ;
   CALL SYMPUT ('RSQ', _RSQ_ ) ;
RUN ;

FOOTNOTE1 ' ' ;
FOOTNOTE2 J=L "R-squared = &RSQ" ;
FOOTNOTE3 ' ' ;


PROC SGPLOT DATA = CAUTI_QTR_SIR ;
   SERIES X = QUARTER Y = SIR / MARKERS ;
   REG X = QUARTER Y = SIR / LINEATTRS = (COLOR = BLACK) ;
   YAXIS LABEL = 'SIR';
   TITLE 'CMC CAUTI SIR 2013 - 2016' ;
RUN;

 

Thank you,

Tina Temples

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16

The regression from proc reg and proc sgplot are same.

 

Please refer to teh link which confirms the same.

 

http://support.sas.com/kb/40/504.html

 

Thanks,
Jag
tmtemples
Fluorite | Level 6

Great!  Thank you for the quick response!

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