Hi all,
I am using Proc PRINCOMP. SAS says that "You can use ODS Graphics to display the scree plot, component pattern plot, component pattern profile plot, matrix plot of component scores, and component score plots. These plots are especially valuable tools in exploratory data analysis.". I think that before plotting these plots, SAS should store the data sets somewhere.
I would like to save these data sets but I cannot do. Do you have any idea how to get them out?
In the attachment, I include two plots from the output when specify:
Ods graphics on;
Proc princomp data=ind_g1 n=2 plots=all out=scores_ind_corr_g1;
Var Vraag_11-Vraag_24;
Run;
Ods graphics off;
Thank you,
Trung Dung.
To get the datasets behind the scenes out you need to use:
ods output wantdataset=objdataset; proc printcomp...
The objdataset is the one from:
The wantdataset is a name you give it.
That stores the data, graphics objects are on the next page:
To create nice output it should be as simple as redirecting ods:
ods rtf file="temp.rtf"; proc princomp... ods rtf close;
Yep, I have only ever seen it used as:
ods output meanscalc=meanscalc;
I.e. both the same, so always forget which is which.
For information about how to store any table or graph to a data set, see
ODS OUTPUT: Store any statistic created by any SAS procedure
For the specific case of graphs, see
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.