Hello ,
I have a sas datafile called 'mylaptop1.sas7bdat' in C:\Sas and want to run
Code used :
/*Tests for Normality of Residuals*/
libname sc "C:\Sasregression on it
data test;
set mylaptop1;
proc univariate data=test normal;
var Score;
qqplot Score / normal(mu=est sigma=est);
proc print data=test;
run;
error :-
EROR: File WORK.MYLAPTOP1.DATA does not exist.
WARNING: The data set WORK.TEST may be incomplete. When this step was stopped there were 0
observations and 0 variables.
WARNING: Data set WORK.TEST was not replaced because this step was stopped.
kindly guide,
mark