-
Notifications
You must be signed in to change notification settings - Fork 1
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
adds chapter on emax covariate modelling #5
base: main
Are you sure you want to change the base?
Conversation
Hi @yoshidk6, This is a first draft for a brms/emax modelling chapter. It's still a little rough around the edges, but the core concepts are there. I think it is at the point where review would be useful, and have some thoughts/questions about what might be needed at this stage:
Best, Danielle |
Hi Danielle, I really appreciate your efforts, this is already looking great!!
continuous_base_fit |>
epred_draws(newdata = tibble(exposure = seq(0, 50000, 1000))) |>
median_qi() %>%
ggplot(mapping = aes(exposure, .epred)) +
geom_path() +
geom_ribbon(aes(ymin = .lower, ymax = .upper), alpha = 0.5) +
geom_point(data = d_example_emax_3cov, aes(y = response))
- I think what we have is fairly good at least for now |
Down the road I also want to incorporate data generation into |
Main changes in this PR:
The emax modeling chapter covers:
brmsformula()
,brmsfamily()
,prior()
, andbrm()
Closes #1