下面是多水平的程序
proc mixed method=reml noclprint covtest;
class country;
model y1=w1|x4 w1|x5 w1|x6 w1|x7 w1|x8 w2|x4 w2|x5 w2|x6 w2|x7 w2|x8 w3|x4 w3|x5 w3|x6 w3|x7 w3|x8 x1 x2 x3
/solution ddfm=bw notest outp=predicted;
random int x4 x5 x6 x7 x8/solution type=vc subject=country;
ods output solutions=jiao.level_2_resd_out;   *输出2水平的残差;
run;
为什么红色部分不能运行呢?
SAS提示
NOTE: Convergence criteria met.
WARNING: 未创建输出“solutions”。请确保输出对象名称、标签或路径拼写正确。还需确保使用了相应的过程选项来生成请求的输出对象。如,确保没有使用 NOPRINT 选项。