curlxp
proc glimmix data=d5a ;
class ID trt ;
model y (desc) =trt/solutions dist=binary;
random intercept/subject=ID;
ods output Tests3=d11;
run;
在程序里我用ods output 把 test3的值输入到数据集d11里,
但同时我想把ConvergenceStatus(就是过程中生成的一个值)也output到同一个数据集(d11)里,
请问怎么实现? 谢谢
zhai24
是啊,就是这种涉及到几句编程语言的很让我头痛啊,各种SAS教材也没讲这样的问题。
期待高手指点一下有什么地方或教材去学一下才好。
da_da_mao
you can output to two tables d11 and d22. then use merge statement in SAS to combine both table, then you can get all information in one table d33.
hope this helps.
curlxp
Thx a lot, man