You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
glm.fit is useful when the model matrix has already been created.
glm.fit is the workhorse function: it is not normally called directly but can be more efficient
where the response vector, design matrix and family have already been calculated.
However, this has been overlooked for the tidy function, even though it has See Also: stats::glm() which has both GLM functions.
Thanks for the issue! broom indeed doesn't support these model objects.
Unfortunately, as of the 1.0.0 release of the package, we're not accepting new tidiers to broom. Further, supporting glm.fit would additionally be a bit wonky in that its S3 class is "list", so we couldn't just define an S3 method through the usual machinery. Since the slant of this function seems developer / advanced user–focused, I'm not too inclined to introduce tidiers for those objects.
Will leave this open to revisit when I'm focused on broom.
glm.fit
is useful when the model matrix has already been created.However, this has been overlooked for the
tidy
function, even though it has See Also: stats::glm() which has both GLM functions.Arguably,
glm.fit
needs tidying much more thanglm
does, which already has a nice summary function.The text was updated successfully, but these errors were encountered: