请选择 进入手机版 | 继续访问电脑版
楼主: bobguy
2798 2

[原创博文] MLE for a region switch model [推广有奖]

学科带头人

7%

还不是VIP/贵宾

-

威望
0
论坛币
14187 个
通用积分
28.9279
学术水平
344 点
热心指数
363 点
信用等级
228 点
经验
104882 点
帖子
1846
精华
0
在线时间
1608 小时
注册时间
2008-7-18
最后登录
2019-3-8

中级热心勋章

bobguy 发表于 2010-11-3 09:37:32 |显示全部楼层 |坛友微信交流群

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币
The estimation is done with NLMIXED.

Following the link for additional information.
http://support.sas.com/rnd/app/da/new/802ce/ets/chap4/sect13.htm



data tmp;
   do i = 1 to 100;
       x1=rannor(123); x2=rannor(123);x3=rannor(123);
       s=1+1*x1>  rannor(123);
       if s=1 then y= 1+2*x2+ 1.5*rannor(123);
       else  y= 3+1*x3+ 1*rannor(123);
       output;
    end;
run;

   proc nlmixed data=tmp;
      parms a0 a1 b0 b1 c0 c1=0 s1 s2=10  ;
      bounds s1 s2 >0;

      xbeta=a0+a1*x1;
      prob=probnorm(xbeta);

      pdf1=( 1/( s1*sqrt(2*constant('pi')) ) *exp(-0.5*( (y-(b0+b1*x2))/s1) **2) );
      pdf2=( 1/( s2*sqrt(2*constant('pi')) ) *exp(-0.5*( (y-(c0+c1*x3))/s2) **2) );

      ll= min( max(prob *  pdf1 + (1-prob)*pdf2, 1e-20), 1-1e-20);

      loglik=log(ll);

      model y ~ general(loglik);
run;
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:switch Region Witch model mode additional

murong2009 发表于 2010-11-3 09:43:33 |显示全部楼层 |坛友微信交流群
what's your point here?

使用道具

huyiustc 发表于 2016-3-1 20:30:44 |显示全部楼层 |坛友微信交流群
这个model X~general() 里面的genera的作用时什么,是不是自定义的loglikelihood就要用这个

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注cda
拉您进交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-4-19 04:11