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
SAS Innovate 2025: Call for Content! Submit your proposals before Sept 25. Accepted presenters get amazing perks to attend the conference!
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
SAS Innovate 2025: Call for Content! Submit your proposals before Sept 25. Accepted presenters get amazing perks to attend the conference!
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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 2692 views
  • 0 likes
  • 3 in conversation