I would like to export my scatterplot generated by SAS into excel. I have read through previous threads and I am still lost on how to do this.
proc gplot data=scatterplot;
plot F*V =S;
run;
My data is grouped data, similar to this: SAS/GRAPH(R) 9.2: Statistical Graphics Procedures Guide, Second Edition
Is there a way to add a line of best fit for each group, one line for Male, and line for Female?
Thanks so much!
Hi,
I've used sgplot to do this, may be helpful for the desired results.
proc sgplot data=scatterplot;
reg x=F y=V /LINEATTRS=solid group=s;
run;
would use the SG proceduers see: ODS Statistical Graphics. What has happened is a silent move of functionality.
"In SAS 9.2, SAS/GRAPH software is required for ODS Graphics functionality. With SAS 9.3, all ODS Graphics capabilities moved to Base SAS."
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.