1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 61 NOTE: PROCEDURE MIXED used (Total process time): real time 0.00 seconds cpu time 0.00 seconds ERROR: Extension for physical file name "/folders/myfolders/poly.dat" does not correspond to a valid member type. NOTE: The SAS System stopped processing this step because of errors. 62 PROC MIXED DATA='/folders/myfolders/poly.dat'; 63 CLASS aggvar; 64 MODEL Z = P E P*P P*E E*E / S DDFM = BW; 65 CONTRAST 'slope of fit line P = E' P 1 66 E 1; 67 CONTRAST 'urvature of fit line P = E' P*P 1 68 P*E 1 69 E*E 1; 70 CONTRAST 'slope of misfit line P = -E' P 1 71 E -1; 72 CONTRAST 'curvature of misfit line P = -E' P*P 1 73 P*E -1 74 E*E 1; 75 RUN; 76 77 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
... View more