Hello All,
Please help me for this. This is my program.
filename prtsort catalog 'Mysas.Mymacro';
%include prtsort(multnorm)/source2;
proc iml;
X={5 3 1 0.2,
3.9 3 1.4 5.2,
9.9 3.2 1.3 0.2};
varNames = "x1":"x4";
create Normal from X[c=varNames]; append from X; close Normal;
quit;
/* Tests for MV normality */
/* Tests for MV normality */
%inc "C:\Users\Desktop\dataMY Sas Files\Mysas.Mymacro\multnorm";
%multnorm(data=Normal, var=x1 x2 x3 x4, plot=MULT);
but I am getting an ERROR: RROR: "You cannot open WORK.NORMAL.DATA for output access with member-level control because
WORK.NORMAL.DATA is in use by you in resource environment DMS Process."
I cant understand the reason. Please help me to fix this.