Skip to contents

Continuous-response mean-difference inference for designs assigned by DesignSeqOneByOneKK14 (the Kapelner-Krieger 2014 sequential matching-on-the-fly design). The point estimate and its variance are the closed-form Bai-adjusted-t combination of the matched-pairs mean difference and the unmatched-reservoir mean difference, inverse-variance-weighted when both are usable; the full formula, pair-distance definition, and confidence-interval/p-value construction are shared with InferenceBaiAdjustedTKK21. The two leaves differ only in how pair distance is defined during matching: this class (KK14) uses the plain squared Euclidean distance \(\sum_j (x_{1j} - x_{2j})^2\) between candidate subjects' covariate vectors, unlike KK21's covariate-weighted distance. Because the estimator is closed-form, initialization does not use warm starts (there is no iterative fit to warm-start).

Details

Legacy class. Not fully tested in comprehensive_tests.R.

Super class

Inference -> InferenceBaiAdjustedTKK14

Methods

+ inherited public methods from Inference


InferenceBaiAdjustedTKK14$set_custom_randomization_statistic_function()

Usage

InferenceBaiAdjustedTKK14$set_custom_randomization_statistic_function(
  custom_randomization_statistic_function
)


InferenceBaiAdjustedTKK14$set_custom_randomization_statistic_cpp()

Usage

InferenceBaiAdjustedTKK14$set_custom_randomization_statistic_cpp(fn)


InferenceBaiAdjustedTKK14$approximate_randomization_distribution_beta_hat_T()

Usage

InferenceBaiAdjustedTKK14$approximate_randomization_distribution_beta_hat_T(
  r = 501,
  delta = 0,
  transform_responses = "none",
  show_progress = TRUE,
  permutations = NULL,
  debug = FALSE,
  zero_one_logit_clamp = .Machine$double.eps
)


InferenceBaiAdjustedTKK14$supports_rand_pval_for_incidence()

Usage

InferenceBaiAdjustedTKK14$supports_rand_pval_for_incidence()


InferenceBaiAdjustedTKK14$compute_rand_two_sided_pval()

Usage

InferenceBaiAdjustedTKK14$compute_rand_two_sided_pval(
  r = 501,
  delta = 0,
  transform_responses = "none",
  na.rm = TRUE,
  show_progress = TRUE,
  permutations = NULL,
  zero_one_logit_clamp = .Machine$double.eps
)


InferenceBaiAdjustedTKK14$clone()

The objects of this class are cloneable with this method.

Usage

InferenceBaiAdjustedTKK14$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

# \donttest{
seq_des = DesignSeqOneByOneKK14$new(n = 10, response_type = 'continuous')
for (i in 1:10) {
  seq_des$add_one_subject_to_experiment_and_assign(data.frame(x1 = rnorm(1), x2 = rnorm(1)))
}
seq_des$add_all_subject_responses(rnorm(10))
inf = InferenceBaiAdjustedTKK14$new(seq_des)
inf$compute_estimate()
#> [1] 0.7589322
# }