Minimal R package to illustrate the difference between Frequentist and Bayesian approaches to A/B testing.
You can install the development version of abTestPower like so:
if (!require(devtools)) {
install.packages("devtools")
}
devtools::install(build_vignettes = TRUE)
if (!require(devtools)) {
install.packages("devtools")
}
devtools::install_github("JulieBorgel/abTestPower", build_vignettes = TRUE)The package vignettes & documention can always be accessed online at https://julieborgel.github.io/abTestPower/.
Alternatively you can access the documentation locally after the package has been installed locally :
library(abTestPower)
?abTestPower
vignette("ABtesting", package = "abTestPower")