PROC GLM DATA = fa_1; CLASS treatment ; MODEL CFB = treatment base/ SOLUTION; LSMEANS treatment / STDERR PDIFF=control("R") CL alpha=0.05 out=LSM; CONTRAST 'T VS R' treatment -1 1 ; /** T = TEST , R = Reference **/ ESTIMATE 'TEST - REF' treatment -1 1 ; ods output estimates=estimates1 LSMeanDiffCL = LSMeanDiffCL1 ; run; data lsm1; set lsm; run; Can any one help me out understanding the above statements regarding PROC GLM, and One more query I have is that,when ever I submit the program then the program runs with out any error but there is no output file created(the program say it still running even after submitting the run statement). But when I write a program below with set statement only then i can find the data file and the program running message is seen no more
... View more