Hi guys! I need to know why I get the same BIC and -2 Res log likelihood values. Shouldnt that be impossible when the equation for BIC is -2ReslogL + 2p, p = number of parameters. Im using this code for a dataset of macro economic data PROC IMPORT OUT=oil DATAFILE= "W:\oil.xlsx" DBMS=xlsx REPLACE; GETNAMES=YES; RUN; proc mixed data=oil covtest noitprint; class country year quarter; model hcip=oilprice interest exchange unemploy output_g/solution residual; random intercept/subject=country; random intercept/subject=year(country); repeated /type=ar(1) subject=year; run;
... View more