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
It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.
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
It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.
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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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