Displaying 1 result from an estimated 1 matches for "wgee".
Did you mean:
gee
2007 Feb 08
0
How to get p-values, seperate vectors of regression coefficients and their s.e. from the "yags" output?
...Rotnitzky-Jewell: 9.477, 143.987
yags/R: $Id: yags.R,v 1.5 2004/10/22 18:49:23 stvjc Exp $
> beta1=coef(wee)
> beta1
NULL
> summary(wee)
Length Class Mode
1 yagsResult S4
> summary(wee)
FYI, in the following geeglm analysis, I have gotten beta=coef(wgee) as a row vector(highlighted):
mf=formula(Ddimer~newrace+steroid+treatment+SOFA+PSI)
> wgee=geeglm(mf, id=Subject, data=na.omit(final), weights=w, family=gaussian("identity"), corstr="exchangeable")
> beta=coef(wgee)
> beta
(Intercept) newrace steroid tr...