We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
tidyMCMC
broom.mixed
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!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey,
sorry, I am too lazy for a pull request 🙈
Two minor issues:
tidyMCMC
is part ofbroom.mixed
now, so should add this package as a dependencysecond one is about extracting the ci's:
should be changed to:
Thanks for the great tutorial!
The text was updated successfully, but these errors were encountered: