This package provides functions for conducting frequentist inference on adaptively generated data. These functions produce point estimates and confidence intervals, using the methods proposed in Zhan, Ruohan, et al. (2021) and Hadad, Vitor, et al. (2021). The code in this package is directly adapted from the original python code for those publications, documented at
For illustration, several functions for simulating non-contextual and contextual adaptive experiments using Thompson sampling are also supplied.
The latest release of the package can be installed through CRAN:
install.packages("banditsCI")
The current development version can be installed from source using devtools:
devtools::install_github("Uchicago-pol-methods/banditsCI")
library(banditsCI)
set.seed(60637)
# Generate synthetic data.
data <- generate_bandit_data(xs = as.matrix(iris[,1:4]),
y = as.numeric(iris[,5]))
# Run a simulated (non-contextual) experiment.
results <- run_experiment(ys = data$data$ys,
floor_start = 1/data$data$K,
floor_decay = 0.9,
batch_sizes = c(50, 50, 50))
# Evaluate mean response under treatment arms.
## Balancing weights
balwts <- calculate_balwts(results$ws, results$probs)
## ipw scores
aipw_scores <- aw_scores(
ws = results$ws,
yobs = results$yobs,
K = ncol(results$ys),
balwts = balwts)
## The policies we're evaluating
policy1 <- lapply(1:data$data$K, function(x) {
pol_mat <- matrix(0, nrow = data$data$A, ncol = data$data$K)
pol_mat[,x] <- 1
pol_mat
}
)
## Estimation
out_full <- output_estimates(
policy1 = policy1,
gammahat = aipw_scores,
probs_array = results$probs,
floor_decay = 0.9)
out_full
For a more detailed description of how to use the package functions, see the vignette.
We produce estimates under different adaptive weighting schemes in the output_estimates()
function.
Weighting schemes include:
uniform = TRUE
.non_contextual_minvar = TRUE
.MinVar
function $\phi(v) = \sqrt{1/v}$contextual_minvar = TRUE
.MinVar
function $\phi(v) = \sqrt{1/v}$non_contextual_stablevar = TRUE
.StableVar
function $\phi(v) = 1/v$contextual_stablevar = TRUE
.StableVar
function $\phi(v) = 1/v$non_contextual_twopoint = TRUE
.We illustrate precise replication of simulated experimental results using the code from the original papers (we modify python notebooks for the benefit of illustration). The code for the replication is available in the following repositories: