Closed DanChaltiel closed 6 months ago
Woah, TIL about devtools::source_gist()
! That's slick.
Some notes-to-self:
grep()
, emmeans, ergm, fixest, glht, manova, coxph, survfit, varest. confint()
methods in the same tidier (and even other functions). Definitely leads to some ambiguity and invisible dot-ignoring. :/I think I've convinced myself that this is in scope for the package's maintenance guidelines. I'd welcome a PR that passes dots to summary()
in the betareg tidy method, documenting and testing doing so (one could model after https://github.com/tidymodels/broom/pull/1153). :)
Closing re: discussion in https://github.com/tidymodels/broom/pull/1199#discussion_r1591505816.
This issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with a reprex: https://reprex.tidyverse.org) and link to this issue.
Hi,
When fitting a beta regression using
betareg::betareg()
, you often have to choose a different type of residual as the default one may produceNaN
.For instance, you could consider the following reprex, taken from StackOverflow. The
type
argument insummary()
is forwarded toresiduals()
.Created on 2024-04-25 with reprex v2.1.0
Would it be possible to have a
type
argument intidy.betareg()
as well?