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-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

Register now

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