Hi all,
I'm reading Rick's book on Statistical Programming using IML. I've gotten to the part about using IML Studio. However, I have trouble "accessing" it. I have checked the documentation and I'm licensed to use SAS IML. I'm using SAS 9.4. That should suffice, correct? Below is some code from the book I have tried to use in the editor:
proc iml;
call randseed(12345);
x = j(100,1);
e = j(100,1);
call randgen(x, "Uniform");
call randgen(e, "Normal");
beta = {2,3};
d = j(100,1,1) || x;
y = d*beta + e;
create MyData var {"x" "y"};
append;
close MyData;
submit;
proc glm data = MyData;
model y = x;
ods output ParameterEstimates = PE;
run;
endsubmit;
quit;
However, the submit and endsubmit statements are red, which I assume means those are not supported?
Thanks for any help.