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
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
Great! Thank you for the quick response!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.
Ready to level-up your skills? Choose your own adventure.