I tried to load a simple code PROC FREQ in SAS, create a 2x2 table and calculate relevant statistics and this is what I face:
This is the code I input:
LIBNAME Lab1 "/home/u61812062/EPID620"
;
run;
proc contents data = lab1.compassign1;
run;
proc freq data = lab1.compassign1;
table exposure * bladderC / cmh relrisk riskdiff;
run;
Anf this is the error I got. I had the compassign1 stored in permanent library (lab1). And variables: exposure and bladderc were variables in the dataset. How come SAS says the variables not found?!