ods output SolutionforFixedEffects=ml;
proc mixed data=simu method=reml;
model Y = X/s ddfm=Satterthwaite;
repeated /subject = X type = cs;
run;
ods output close;
运行之后显示
WARNING: 未创建输出‘SolutionforFixedEffects’。请确保输出对象名称、标签或路径拼写正确。还需确保使用了相应的过程选项来生成
请求的输出对象。如,确保没有使用 NOPRINT 选项。
这是怎么回事呀?应该怎么办呀?