Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

emmeans and beta regression support #386

Open
yuryzablotski opened this issue Aug 4, 2023 · 0 comments
Open

emmeans and beta regression support #386

yuryzablotski opened this issue Aug 4, 2023 · 0 comments
Labels
feature idea 🔥 New feature or request

Comments

@yuryzablotski
Copy link

Describe the bug
Emmeans in general and beta regression in particular are not supported by the "report" package. Would be nice if it worked:

To Reproduce
d <- mtcars %>%
mutate(mpg = mpg/100,
cyl = factor(cyl))

library(betareg)
m <- betareg(mpg ~ cyl, data = d)

library(sjPlot)
plot_model(m, type = "pred")

library(emmeans)
emmeans(m, pairwise ~ cyl, type = "response")

library(report)
report(m)

report( emmeans(m, pairwise ~ cyl, type = "response") )

Thanks upfront!

Specifications (please complete the following information):

packageVersion("report")
[1] ‘0.5.7’
packageVersion("emmeans")
[1] ‘1.8.7’
packageVersion("betareg")
[1] ‘3.1.4’

@rempsyc rempsyc added the feature idea 🔥 New feature or request label Aug 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature idea 🔥 New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants