由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - model simplex distribution
相关主题
大伙儿捧个人场吧simulation IRT 3PL parameter distribution and range 问题。 万分感谢
[合集] 请教一个percentile的问题 (SAS)一个量有两个分布描述,如何把这两个分布的信息结合起来呢?
tweedie distribution那位高手帮我看看这道变态面试题!
a class of models more general than classic GLMGamma distribution for power analysis,请大拿指点
gamma distribution + mgfhow to do data fitting to find distribution (转载)
residual deviance 和 dispersion parameter大家做bayesian prior distribution的时候怎么assume non negative的parameter‘s distribution?
how to generate truncated gamma distribution in pytho如何比较两组posterior distribution是否有显著差异
请问有计算noncentral t distribution的c代码么[SAS]programming statement in Proc GLMMIX/NLMIX/MODEL
相关话题的讨论汇总
话题: simplex话题: sigma话题: nlmixed话题: model
进入Statistics版参与讨论
1 (共1页)
s*********e
发帖数: 1051
1
does anyone here have experience in simplex distribution?
I drafted a piece of nlmixed code based upon the density function but am not
sure it is correct or not.
proc nlmixed data = tmp1 technique = NRRIDG ;
parms b0 = 0 b1 = 0.1 sigma = 5;
bounds sigma > 0;
u = 1 / (1 + exp(-(b0 + b1 * x)));
dd = (y - u) ** 2 / (y * (1 - y) * u ** 2 * (1 - u) ** 2);
lh = (2 * constant('pi') * sigma * (y * (1 - y)) ** 3) ** (-0.5) * exp(-(2
* sigma) ** (-1) * dd);
ll = log(lh);
model y ~ general(ll);
run;
here, the mean parameter is a linear component and the dispersion parameter
is a constant.
any insight is highly appreciated.
s*********e
发帖数: 1051
2
i got the confirmation from matt flynn in travelers that my code is correct.
thx for your attention.

not
(2

【在 s*********e 的大作中提到】
: does anyone here have experience in simplex distribution?
: I drafted a piece of nlmixed code based upon the density function but am not
: sure it is correct or not.
: proc nlmixed data = tmp1 technique = NRRIDG ;
: parms b0 = 0 b1 = 0.1 sigma = 5;
: bounds sigma > 0;
: u = 1 / (1 + exp(-(b0 + b1 * x)));
: dd = (y - u) ** 2 / (y * (1 - y) * u ** 2 * (1 - u) ** 2);
: lh = (2 * constant('pi') * sigma * (y * (1 - y)) ** 3) ** (-0.5) * exp(-(2
: * sigma) ** (-1) * dd);

d*******o
发帖数: 493
3
statcompute 和 matt是用proc nlmixed的大牛啊
s*********e
发帖数: 1051
4
he is. iam not.

【在 d*******o 的大作中提到】
: statcompute 和 matt是用proc nlmixed的大牛啊
1 (共1页)
进入Statistics版参与讨论
相关主题
[SAS]programming statement in Proc GLMMIX/NLMIX/MODELgamma distribution + mgf
关于在R中run SVM的问题residual deviance 和 dispersion parameter
一般的统计仿真实验和monte carlo simulation是一回事吗?how to generate truncated gamma distribution in pytho
[请教] 如何用SAS求解2个parameter满足2个方程请问有计算noncentral t distribution的c代码么
大伙儿捧个人场吧simulation IRT 3PL parameter distribution and range 问题。 万分感谢
[合集] 请教一个percentile的问题 (SAS)一个量有两个分布描述,如何把这两个分布的信息结合起来呢?
tweedie distribution那位高手帮我看看这道变态面试题!
a class of models more general than classic GLMGamma distribution for power analysis,请大拿指点
相关话题的讨论汇总
话题: simplex话题: sigma话题: nlmixed话题: model