BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
BingL
Obsidian | Level 7

Hello to whomever can help

 

I have a data set like following:

Capture.PNG

I tried the following program, but it give me error.

PROC IML;
        print (mu_vec['MSFT']);

error message is like following. Please help. Thank you.

Capture.PNG

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

If you are using a column name attribute, you need to specify the name as a column:
mu_vec[, 'MSFT'];

 

For more information and examples, see "Access rows or columns of a matrix by names."

View solution in original post

3 REPLIES 3
Rick_SAS
SAS Super FREQ

First you have to read the data from the data set into a matrix or vector.

Read the article "Reading ALL variables INTO a matrix."

 

Is the data in a data set that has one observation and three variables?  If so, then the PROC IML statements look like this:

proc iml;
use Have;
read all var {"MSFT" "NORD" "SBUX"} into mu_vec;
close Have;

If you want to read all of the numeric variables, you can use this:

 

read all var _NUM_ into mu_vec[colname=varNames];
BingL
Obsidian | Level 7
Hello Rick

Thank you for your response and help.

Data was create in PROC IML procedure.

It is like following code:

names = {'MSFT' 'NORD' 'SBUX'};
mattrib mu_vec c=names;

actually I haven't tried the following.

mu_vec[, 'MSFT'];
Rick_SAS
SAS Super FREQ

If you are using a column name attribute, you need to specify the name as a column:
mu_vec[, 'MSFT'];

 

For more information and examples, see "Access rows or columns of a matrix by names."

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 3270 views
  • 2 likes
  • 2 in conversation