Dear experts, I tried to run: PROC HPMIXED DATA=work.fiscal COVTEST NOCLPRINT NAMELEN=100 IC METHOD=REML lognote lognote; CLASS i f c year; MODEL roa = year/ SOLUTION CL CHISQ DDFM=RESIDUAL NOTEST; RANDOM year INTERCEPT / TYPE=AR(1) subject=i; RANDOM INTERCEPT / TYPE=VC subject=f(i); RANDOM INTERCEPT / TYPE=VC subject=c(f i); REPEATED year/ TYPE=AR(1) SUBJECT=f(i); RUN; But I got below error message: 72 PROC HPMIXED DATA=work.fiscal COVTEST NOCLPRINT NAMELEN=100 IC METHOD=REML lognote lognote; NOTE: Writing HTML Body file: sashtml.htm 72 PROC HPMIXED DATA=work.fiscal COVTEST NOCLPRINT NAMELEN=100 IC METHOD=REML lognote lognote; ------- 22 ERROR 22-322: Syntax error, expecting one of the following: ;, (, BLUP, DATA, IC, INFOCRIT, ITDETAILS, LOGNOTE, MAXCLPRINT, METHOD, MMEQ, NAMELEN, NLPRINT, NOCLPRINT, NOFIT, NOINFO, NOITPRINT, NOPRINT, NOPROFILE, ORDER, RANKS, SIMPLE, SINGCHOL, SINGRES, SINGULAR, UPDATE. 72 PROC HPMIXED DATA=work.fiscal COVTEST NOCLPRINT NAMELEN=100 IC METHOD=REML lognote lognote; ------- 202 ERROR 202-322: The option or parameter is not recognized and will be ignored. 72 PROC HPMIXED DATA=work.fiscal COVTEST NOCLPRINT NAMELEN=100 IC METHOD=REML lognote lognote; ------ 73 ERROR 73-322: Expecting an =. 72 PROC HPMIXED DATA=work.fiscal COVTEST NOCLPRINT NAMELEN=100 IC METHOD=REML lognote lognote; ------ 76 ERROR 76-322: Syntax error, statement will be ignored. NOTE: PROCEDURE HPMIXED used (Total process time): real time 0.62 seconds cpu time 0.51 seconds NOTE: The SAS System stopped processing this step because of errors. 73 CLASS i f c year; 74 MODEL roa = year/ SOLUTION CL CHISQ DDFM=RESIDUAL NOTEST; 75 RANDOM year INTERCEPT / TYPE=AR(1) subject=i; 76 RANDOM INTERCEPT / TYPE=VC subject=f(i); 77 RANDOM INTERCEPT / TYPE=VC subject=c(f i); 78 REPEATED year/ TYPE=AR(1) SUBJECT=f(i); 79 RUN; Could someone please help me with this issue? Thank you very much!
... View more