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

autoselect type for pp_check with group argument #1649

Open
venpopov opened this issue Apr 18, 2024 · 1 comment
Open

autoselect type for pp_check with group argument #1649

venpopov opened this issue Apr 18, 2024 · 1 comment
Labels
Milestone

Comments

@venpopov
Copy link
Contributor

pp_check has the group argument and for most plot type (type argument), there is a grouped version. E.g., the default is dens_overlay and there is dens_overlay_grouped.

Currently, if you run this code, you don't get a grouped plot:

pp_check(fit, group = "condition")

you have to manually specify the type:

pp_check(fit, group = "condition", type = "dens_overlay_grouped")

Rather than having separate type arguments for ungrouped and grouped versions, it would be nice if pp_check automatically chooses *_grouped type if the group argument is specified. This would make the first example work by default without having to remember what the correct type is.

E.g., both of these should work:

pp_check(fit, type = "error_hist")
pp_check(fit, group = "condition", type = "error_hist")

with pp_check internally switching to type = "error_hist_grouped" in the second case.

Not super important but nicer UI.

@paul-buerkner
Copy link
Owner

I like the idea!

@paul-buerkner paul-buerkner added this to the brms 2.22.0 milestone Apr 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants