Displaying 1 result from an estimated 1 matches for "ae7bepn".
2009 Feb 17
1
Processing a list of fit objects
Hi, I have a list of fit objects (fit objects from HMISC functions)
I create elements in the list in this way
lrm.sumtot <- lrm( ae7bepn ~ trarm + sumtot , data=sd.fix)
lrm.list[['lrm.sumtot']] <- lrm.sumtot
And I can run (anova(lrm.sumtot))
The following also gives the anova I'd expect
zz <- lrm.list[['lrm.sumtot']];anova(zz)
And similarly for the summary command
I would prefer not to create a s...