Problem Note 8916: Incorrect PROC MIXED code may be generated by Enterprise Guide
Code similar to the following incorrect PROC MIXED code may be generated
by Enterprise Guide:
proc mixed data=sashelp.class
method =reml ;
class sex;
model weight=sex
/
htype =3
ddfm=contain;
run;
random sex /
;
quit;
The correct form is as follows:
proc mixed data=sashelp.class
method =reml ;
class sex;
model weight=
/
htype =3
ddfm=contain;
random sex /
;
run;
quit;
A Technical Support hot fix for Enterprise Guide 2.0 for this
issue is available at:
http://www.sas.com/techsup/download/hotfix/ent_guide20.html#008916
Operating System and Release Information
| SAS System | SAS Enterprise Guide | Microsoft Windows 2000 Professional | 2.0 | 2.05 | 9 TS M0 | |
| Microsoft Windows XP Professional | 2.0 | 2.05 | 9 TS M0 | |
| Microsoft Windows NT Workstation | 2.0 | 2.05 | 9 TS M0 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Problem Note |
| Priority: | alert |
| Date Modified: | 2002-11-20 08:42:30 |
| Date Created: | 2002-11-18 15:33:51 |