BookmarkSubscribeRSS Feed
trungdungtran
Obsidian | Level 7

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.

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

To get the datasets behind the scenes out you need to use:

ods output wantdataset=objdataset;

proc printcomp...

The objdataset is the one from:

https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_princomp_se...

 

The wantdataset is a name you give it.

 

That stores the data, graphics objects are on the next page:

https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_princomp_se...

 

To create nice output it should be as simple as redirecting ods:

ods rtf file="temp.rtf";

proc princomp...

ods rtf close;
PGStats
Opal | Level 21

@RW9, that should be

 

ods output objdataset=wantdataset;

PG
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Yep, I have only ever seen it used as:

ods output meanscalc=meanscalc;

 

I.e. both the same, so always forget which is which.

Rick_SAS
SAS Super FREQ

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

How to get data values out of ODS graphics

SAS Innovate 2025: Register Now

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!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1265 views
  • 0 likes
  • 4 in conversation