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

Two minor issues #3

Open
cutterkom opened this issue Nov 18, 2022 · 0 comments
Open

Two minor issues #3

cutterkom opened this issue Nov 18, 2022 · 0 comments

Comments

@cutterkom
Copy link

Hey,
sorry, I am too lazy for a pull request 🙈

Two minor issues:

  • tidyMCMC is part of broom.mixed now, so should add this package as a dependency

  • second one is about extracting the ci's:

infer_simulation <- tibble(estimate = diff_means$stat,
                           conf.low = boostrapped_confint$`2.5%`,
                           conf.high = boostrapped_confint$`97.5%`)

should be changed to:

infer_simulation <- tibble(estimate = diff_means$stat,
                           conf.low = boostrapped_confint$lower_ci,
                           conf.high = boostrapped_confint$upper_ci)

Thanks for the great tutorial!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant