BookmarkSubscribeRSS Feed
karen8169
Obsidian | Level 7

When I try to rewrite the orginal code to fit my data, it always appears that "ERROR: (execution) Matrix has not been set to a value.".
But I don't know where can I correct them. By the way, I want to know how to store het_y into a column form.

Thanks a million.

 

proc IML;
use work.jb_test_data;
read point (1:252) var{BIDLO ASKHI PRC VOL RET} into m;

n=nrow(m); r=ncol(m);
y=m[,5]; x=shape(1,n,1)||m[ ,1:2:3:4];

beta=inv(t(x)*x)*t(x)*y;
sigma=sqrt(t(y-x*beta)*(y-x*beta)/(n-r));
se=sigma*sqrt(vecdiag(inv(t(x)*x)));
het_y=x*beta;
print het_y;



2 REPLIES 2
ballardw
Super User

It often helps to post the entire log of the code and any error /warning messages to diagnose things.

Also, since you use the phrase "try to rewrite the orginal code to fit my data" it appears that you are following another code file.

It may help to post that original code as well.

Rick_SAS
SAS Super FREQ

The index creation operator (:)  has the syntax initial:final.  In your case, the correct syntax is

x=shape(1,n,1) || m[ ,1:4];

 

See the "Tutorial" section of the SAS/IML documentation for other tips for using SAS/IML for linear regression.

 

To write vectors to a SAS data set, see "Writing data from a matrix to a SAS data set."

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
  • 2 replies
  • 1516 views
  • 1 like
  • 3 in conversation