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

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

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