R-CMD-check test-coverage

Minimal R package to illustrate the difference between Frequentist and Bayesian approaches to A/B testing.

Installation

You can install the development version of abTestPower like so:

  • From a local clone:
if (!require(devtools)) {
  install.packages("devtools")
}

devtools::install(build_vignettes = TRUE)
  • Directly from github repository:
if (!require(devtools)) {
  install.packages("devtools")
}

devtools::install_github("JulieBorgel/abTestPower", build_vignettes = TRUE)

Documentation

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")