Hi All, I am running the following SAS Macro %GLIMMIX and get the error mesage in the log file. Any Help to address it is apprecieated: SAS CODE: %INCLUDE "C:\Users\Mohsen\Desktop\PracticumCourse\5-Good\HPGLIMMIX\HPGLIMMIX.sas" ; title "Using HPGLIMMIX macro"; %hpglimmix(data=library.projectfulldata, stmts=%str( class id age; model stopcorrect= age/s; random int/subject=id; ), error=binomial, maxit=50, link=logit, ); SAS LOG FILE: options mlogic symbolgen mprint; %INCLUDE "C:\Users\Mohsen\Desktop\PracticumCourse\5-Good\HPGLIMMIX\HPGLIMMIX.sas" ; title "Using HPGLIMMIX macro"; %hpglimmix(data=library.projectfulldata, MLOGIC(HPGLIMMIX): Beginning execution. stmts=%str( class id age; model stopcorrect= age/s; random int/subject=id; 13867 ), 13868 error=binomial, maxit=50, 13869 link=logit, ); ERROR: All positional parameters must precede keyword parameters.
... View more