SAS PROC MIXED: Proc Mixed statement

Return   Top   SAS   Home   ]
The proc mixed statement specifies the analysis type as a mixed (fixed plus random effects) regression.
proc mixed data=Sim1 info;
The phrase data= specifies the dataset, either a permanent sas data file or one created with a preceeding Data step.

Including info requests additional useful information such as the levels for the class variables.

Other required or optional statements such as class and model follow the proc mixed statement. The run statement completes the definition of the mixed model analysis.


Return   Top   SAS   Home   ]