BookmarkSubscribeRSS Feed
deleted_user
Not applicable
How can I obtain the correlation matrix of several variables in SAS EG? Or a matrix plot like the one provided in minitab?
4 REPLIES 4
ChrisHemedinger
Community Manager
If you have SAS 9.2, then you can get this with some code and the new ODS graphics cababilities.

[pre]
ods graphics on;
proc corr data=sashelp.cars;
var enginesize weight;
with mpg_city mpg_highway;
run;
ods graphics off;
[/pre]

If you have EG 4.1 and SAS 9.2 on the same Windows machine, this code will work. EG 4.2 will use the ODS graphics automatically within the Correlations task. I've attached a sample of the output plot (if the forum software will allow you to view it...)

Chris
Learn from the Experts! Check out the huge catalog of free sessions in the Ask the Expert webinar series.
Doc_Duke
Rhodochrosite | Level 12
See this thread from January on how to accomplish the same thing with EG 4.1 and SAS 9.1.3.

http://support.sas.com/forums/thread.jspa?messageID=9148⎼
ChrisHemedinger
Community Manager
Doc is right (of course)! Many procedures have ODS graphics support in 9.1.3, but all labeled as "experimental" -- and I couldn't remember which procedures were included.

Here is the relevant doc example for PROC CORR:

http://support.sas.com/onlinedoc/913/getDoc/en/procstat.hlp/corr_sect32.htm

Chris
Learn from the Experts! Check out the huge catalog of free sessions in the Ask the Expert webinar series.
Doc_Duke
Rhodochrosite | Level 12
And one of the things that changed in 9.2 is the syntax. So, if you are considering going to 9.2 soon you may want to compare the documentation so fewer things "break" when you do the upgrade.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2740 views
  • 0 likes
  • 3 in conversation