结果:找到“proc mixed”相关内容106个,排序为按回复时间降序,搜索更多相关帖子请点击“高级”
求助,proc mixed里estimate语句
4 个回复 - 4790 次查看
请问,
proc mixed过程中estimate适用于对效应之间的差别是如何进行选择的?
例如 b1-b2+(ab)11-ab(12)
为什么写出来是 b 1 -1 a*b 1 -1 0 0
是否estimate对于 a*b 后面的系数选择始终按照 (ab)11 (ab)12 (ab)21 ...
2016-4-20 11:03 - wodewin - SAS专版
混合线性模型(proc mixed)
21 个回复 - 43151 次查看
混合线性模型(
proc mixed)
1. GLM是应用最小二乘法原理计算协方差参数的,这一模型对协方差结构有极端的假定。当需要估计尽可能多的方差及协方差参数时,GLM模型有一定的局限性,而基于似然函数法原理的混合效应线 ...
2013-1-9 14:49 - kittyforever - SAS专版
二元线性混合模型的SAS proc mixed
0 个回复 - 1590 次查看
摘要翻译:
二元线性混合模型在分析两个相关标记的纵向数据时是有用的。本文提出了一个包含随机效应或一阶自回归过程和两个标记的独立测量误差的二元线性混合模型。使用SAS Proc MIXED提供了适合这些模型的代码和技巧 ...
2022-3-7 08:57 - 大多数88 - Forum
SAS proc mixed 如何输出每个数据的斜率?
0 个回复 - 1013 次查看
通过
proc mixed 可以输出固定效应参数和每个id的随机效应,如何输出每个id的截距和斜率?
以下是
proc mixed 代码:
proc mixed data=data1;
class id;
model TC=FMP visi_tage1/s;
random int FMP visi_tage1/t ...
2022-2-7 15:23 - 19880910dqy - SAS专版
proc nlmixed程序下parms命令问题
0 个回复 - 726 次查看
求助呀,头疼
程序是
proc nl
mixed;
parms B0=0 V_u0=1;
logodds=B0+u0j;
odds=exp(logodds);
P=odds/(1+odds);
MODEL nQ302~binary(P);
random u0j~normal(0,V_u0)subject=site;
ESTIMATE 'icc' V_u ...
2020-10-19 17:24 - 初生牛犊00 - SAS专版
proc mixed语句中的subject是做什么用的
1 个回复 - 1449 次查看
重复测量数据分析
proc mixed;class id treat period; model y=treat period treat*period; random id(treat) /type=ar(1) subject=id;random是说哪些变量是随机变量,那么后面的subject是说什么呢?
ttp://www. ...
2019-3-1 21:50 - 吱吱喳喳晃晃悠悠 - SAS专版
如何知道proc NLMIXED 处理问题的流程
3 个回复 - 2899 次查看
如题,本人编程水平有限,看到NLMIXED可以做很多事情,如求导数等,想知道,如何能够看到sas中NLMIXED的运行流程,比如如何启动的,第一步是做什么,然后再怎么样等。这怎么才能知道?非常感谢!
2012-6-24 11:51 - 园丁鸟 - SAS专版
关于proc nlmixed过程
10 个回复 - 7369 次查看
我用
proc nl
mixed做受约束系数的logit模型,为什么结果中有的系数有t值、p值、stand error;而有的系数没有呢?
请问谁能帮我解答一下吗?我应该怎么解决这个问题呢?
2012-8-23 11:57 - 蝇子 - SAS专版
region switch regression in proc nlmixed
1 个回复 - 1385 次查看
When an error in a selection equation is correlated with regression equations, then these correlation measures have to be corrected in the likelihood function, otherwise the results will be bias ...
2015-3-9 17:12 - bobguy - 经管代码库
求介绍proc mixed 过程,百度没百到...
6 个回复 - 9521 次查看
看了一段别人的code
第一次 看到
proc mixed
问问大家 这
proc mixed 是干什么用的,使用的语句是什么
(百度说这好像是模型之类的)
还有
method=reml
model
/s /at outp=pred ddfm=kr[/backcolor]
es ...
2015-9-29 15:59 - 小琪是豆豆猪 - SAS专版
菜鸟求助!proc mixed 中关于contrast与lsmeans如何用
0 个回复 - 4128 次查看
求助。如题。我的数据及程序如下。time1 分三次测,1、2、3;测量值为count,是个2分类变量。
data a;
/*time 1-pre 2-MMT 3-during count 1-no 0-yes */
input id time1 count @@;
cards;
1001 1 0
1001 3 0
...
2015-4-26 09:42 - llwx09 - SAS专版
proc mixed 如何实现输出预测值,残差等
1 个回复 - 5115 次查看
各位论坛里的大牛好!
朋友问我如何在
proc mixed里实现输出预测值和残差,95%CI等。
我原本以为会合
proc reg一样,在model语句加选项P或者R什么的。
但是后来发现不行。
还请各位指教。
另外,在
proc reg里 ...
2014-1-7 06:45 - valenjxj - SAS专版
有关proc mixed的疑问. 请解惑!
2 个回复 - 2192 次查看
proc mixed data=ana4;
class USUBJID TRT01PN VISITN;
model aval=TRT01PN VISITN TRT01PN*VISITN / noint cl ddfm=kr ;
repeated VISITN / subject=USUBJID type=un;
by sgrp;
where ch = "" and visitn ...
2015-1-8 13:24 - bhzhangkelei - SAS专版
关于PROC MIXED 中class的疑惑
4 个回复 - 5457 次查看
在论坛中看到如下的对重复测量数据分析的过程(原帖地址http://bbs.pinggu.org/thread-998488-1-1.html),class中加入和不加入time有什么区别?是否应该加入time?谢谢!
Proc
mixed data=a_b covtest method =R ...
2014-6-5 14:28 - ccgcs - SAS专版
region switch regression in proc nlmixed
1 个回复 - 1134 次查看
When an error in a selection equation is correlated with regression equations, then these correlation measures have to be corrected in the likelihood function, otherwise the results will be biased.
...
2013-10-7 00:07 - bobguy - SAS专版
请教proc nlmixed的结果输出!
4 个回复 - 2627 次查看
各位大侠,请问
proc nl
mixed的估计结果的输出应该如何表示?(要求把结果输出到数据集中)
ods output dimensions =data1选项仅能数据变量规模,哪个选项适合输出估计值呢?谢谢各位了!
2009-7-13 14:32 - ywhwj - SAS专版
SAS proc mixed 改变了 reference group, 结果不一致性
1 个回复 - 1146 次查看
code:
PROC MIXED DATA= use ;[/backcolor]
class study_id identifier tm ;[/backcolor]
MODEL allowp = identifier tm identifier*tm/ solution ;[/backcolor]
REPEATED / subject=study_id type=un rcorr; [/ ...
2013-5-24 23:01 - qili0547 - SAS专版
有没有人用过proc mixed 这个过程
2 个回复 - 4243 次查看
有没有哪位高手用过Proc MIXED 这个过程啊 怎么用的 能不能详细解释下或者直接以下面的例子帮我编个程,多谢了啊
现在有6个clusters, 每个cluster有响应变量y,有解释变量x1, x2, x3, x4, x5, x6, 假设这六个 ...
2013-4-8 16:34 - 慧(会)幸福 - SAS专版
SAS中PROC MIXED怎么用于估计线性混合效应模型
0 个回复 - 1940 次查看
现在有6个clusters, 每个cluster有响应变量y,有解释变量x1, x2, x3, x4, x5, x6, 假设这六个解释变量都有随机效应, 建立混合效应模型y=x*beta+z*b+error ,怎么样能得到beta和每一个cluster下的beta的估计?
能 ...
2013-3-26 09:14 - 慧(会)幸福 - SAS专版
proc nlmixed
1 个回复 - 284 次查看
proc nl
mixed我用一组数据代进去,SAS不报错。但换个数据,SAS就报错。这是怎么回事?
ERROR:Termination due to Floating Point Exception
是我的数据不符合模型的问题吗?
2012-10-23 19:27 - Silence. - SAS专版
帮我看看这段代码好吗?proc nlmixed
1 个回复 - 1182 次查看
proc nl
mixed data=clmfreq;
parms b0=0 b1=0 b2=0 b3=0;
linp=b0+b1*x1+ b2*x2+b3*x3;
mu=exp(linp);
model count~Poisson(mu);
predict pdf('Poisson',count,mu) out=poiOut(keep= count pred);
run;
请问 ...
2012-10-23 17:45 - Silence. - SAS专版
帮我看看这段代码好吗?proc nlmixed
11 个回复 - 2620 次查看
proc nl
mixed data=clmfreq;
parms b0=0 b1=0 b2=0 b3=0;
linp=b0+b1*x1+ b2*x2+b3*x3;
mu=exp(linp);
model count~Poisson(mu);
predict pdf('Poisson',count,mu) out=poiOut(keep= count pred);
run;
请问 ...
2012-11-1 20:26 - Silence. - SAS专版
proc nlmixed可有局限性?求解答
2 个回复 - 1574 次查看
我用
proc countreg可以算出零膨胀负二项模型的参数估计,但用
proc nl
mixed却会报错。
WARNING: The final Hessian matrix is not positive definite, and therefore the estimated covariance
matrix is n ...
2012-10-24 21:26 - Silence. - SAS专版
请教The Mixed Procedure
1 个回复 - 1359 次查看
有哪位高手讲讲Den DF 是什么?怎么没有均方???
Num
Den
Effect
DF
DF
F Value
Pr > F
rep
2
166
0.81
0.4474
varietyname
83
166
2.76
2011-1-13 12:43 - seia123 - SAS专版