BookmarkSubscribeRSS Feed
Bogdan
Calcite | Level 5

Would you recommend naming the matrix through use/read/close same name as the dataset or different name?

(and conversely from IML matrix to a table)

Using the same name might lead to confusion; also, is there any possible such interference? 

On the other hand, using different names at same point looks like clutter.

1 REPLY 1
Rick_SAS
SAS Super FREQ

There is no conflict, so you can do whichever you prefer.

For me, it varies. If there is a correlation matrix in a data set named CORR, I might read it into a matrix of the same name.

If the data set is named MyCorrelationMatrix, I'll probably just read it into S.

Most real data sets have both character and numeric variables, so you can't read all variables into a single matrix. For example: the sashelp.class data set contains a SEX and a NAME variable (both character), so if I want to read the numeric variables I might just say:

use sashelp.class;

read all var _num_ into X;

close sashelp.class;

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 1 reply
  • 1330 views
  • 3 likes
  • 2 in conversation