-
Notifications
You must be signed in to change notification settings - Fork 14
summary.manyglm fails if family is "binomial(link=logit)" #20
Comments
Hi, Ben, I don't get the error in summary.manyglm(glm.spid.bin) by running the Alice On Fri, Mar 18, 2016 at 10:33 AM, Ben Raymond notifications@github.com
|
We were using the CRAN version (3.11.5, see my sessionInfo output above). You're right, the current dev version (3.11.7) doesn't have this problem. Sorry, didn't check that before submitting. Thanks. |
Thanks for the follow-up. Maybe time for Alice to roll up a new version... |
David, Maybe it is time to update the CRAN version? Thanks, On Mon, Mar 21, 2016 at 5:59 AM, Dirk Eddelbuettel <notifications@github.com
|
Fails:
[from the demo code]
Error in summary.manyglm(glm.spid.bin) :
'family' not defined. Choose one of 'poisson', 'negative.binomial', 'binomial' for an manyglm object
The family is:
But summary.manyglm looks for an exact string match on the family (object$family == "binomial"), so it fails. Probably this test should be more like the one used in anova.manyglm (substr(object$family, 1, 1) == "b")
The text was updated successfully, but these errors were encountered: