使用proc mixed来估计参数

时间:2016-01-22 19:14:31

标签: sas mixed-models

我有一个带有以下参数的混合模型:

  • 第1组的斜率和截距术语
  • 第2组的不同斜率和截距术语
  • 由组内的组/主题索引的随机效果

有没有办法用proc混合模型?我似乎无法弄清楚如何为这两组获得不同的斜率/截距。

1 个答案:

答案 0 :(得分:1)

这显示了一个具有独立截距和斜率的简单模型。首先是BY GROUP,然后以GROUPS作为因子,汇总估计误差。也许如果您应该使用一些示例数据,我们可以计算出RANDOM部分。

data group;
   do group=1,2;
      do x = 1 to 10;
         y = rannor(1);
         output;
         end;
      end;
   Run;
ods select SolutionF;
proc mixed;
   by group;
   model y = x / solution;
   run;
ods select SolutionF;
proc mixed;
   class group;
   model y = group x(group) / noint solution;
   run;

enter image description here