tests/testthat/test_state_aak_adj.R

context("state_aak_adj")

# Infants weights (in grams) data, Abu-Shawiesh, Akyuz & Kibria (2019),
# Section 6.1 (n = 61). Used in their Tables 4 & 5.
infants_data <- c(
  4960, 5130, 4260, 5160, 4050, 5240, 4350, 4360, 3930, 4410,
  4610, 4102, 3530, 4550, 4460, 2940, 4160, 4110, 4410, 4800,
  5130, 3670, 4550, 4290, 5210, 4950, 5210, 3210, 4030, 3580,
  4360, 4360, 3920, 4050, 4630, 3756, 4382, 4586, 5336, 2828,
  4172, 4256, 4594, 4866, 4784, 4520, 5238, 4320, 5070, 5330,
  3836, 5916, 5010, 4344, 3496, 4148, 4044, 5192, 4368, 4180,
  5044
)

# Postmortem interval (PMI) data, Abu-Shawiesh, Akyuz & Kibria (2019),
# Section 6.2 (n = 22). Used in their Tables 4 & 6.
pmi_data <- c(
  5.5, 14.5, 6.0, 5.5, 5.3, 5.8, 11.0, 6.1, 7.0, 14.5,
  10.4, 4.6, 4.3, 7.2, 10.5, 6.5, 3.3, 7.0, 4.1, 6.2,
  10.4, 4.9
)

small_data <- c(
  0.2, 0.5, 1.1, 1.4, 1.8, 2.3, 2.5, 2.7, 3.5, 4.4,
  4.6, 5.4, 5.4, 5.7, 5.8, 5.9, 6.0, 6.6, 7.1, 7.9
)

test_that(
  desc = "AA&K-ADJ matches paper Table 5 on infants data",
  {
    # Paper reports (0.1163, 0.1706). Allow 0.5 percentage points
    # of slack.
    result <- CoefVarCI$new(
      x = infants_data, alpha = 0.05, digits = 6
    )$aak_adj_ci()
    expect_equal(
      result$statistics$lower / 100, 0.1163,
      tolerance = 0.005
    )
    expect_equal(
      result$statistics$upper / 100, 0.1706,
      tolerance = 0.005
    )
  }
)

test_that(
  desc = "AA&K-ADJ matches paper Table 6 on PMI data",
  {
    # Paper reports (0.3275, 0.6532).
    result <- CoefVarCI$new(
      x = pmi_data, alpha = 0.05, digits = 6
    )$aak_adj_ci()
    expect_equal(
      result$statistics$lower / 100, 0.3275,
      tolerance = 0.005
    )
    expect_equal(
      result$statistics$upper / 100, 0.6532,
      tolerance = 0.005
    )
  }
)

test_that(
  desc = "AA&K-ADJ bounds bracket the point estimate",
  {
    result <- CoefVarCI$new(
      x = small_data, digits = 6
    )$aak_adj_ci()
    expect_lt(result$statistics$lower, result$statistics$est)
    expect_gt(result$statistics$upper, result$statistics$est)
  }
)

test_that(
  desc = "AA&K-ADJ method label changes with correction flag",
  {
    no_corr <- CoefVarCI$new(
      x = small_data, correction = FALSE
    )$aak_adj_ci()
    with_corr <- CoefVarCI$new(
      x = small_data, correction = TRUE
    )$aak_adj_ci()
    expect_true(grepl("Abu-Shawiesh-Akyuz-Kibria", no_corr$method))
    expect_true(grepl("Abu-Shawiesh-Akyuz-Kibria", with_corr$method))
    expect_true(grepl("corrected", with_corr$method))
  }
)

test_that(
  desc = "AA&K-ADJ requires at least 4 observations",
  {
    expect_error(
      CoefVarCI$new(x = c(1.0, 2.0, 3.0))$aak_adj_ci(),
      regexp = "(at least 4|G_2|gamma_hat)"
    )
  }
)

test_that(
  desc = "cv_versatile aak_adj matches the R6 method",
  {
    r6 <- CoefVarCI$new(
      x = small_data, alpha = 0.05, digits = 6
    )$aak_adj_ci()
    proc <- cv_versatile(
      x = small_data, method = "aak_adj", alpha = 0.05, digits = 6
    )
    expect_equal(
      r6$statistics$lower, proc$statistics$lower,
      tolerance = 0.0001
    )
    expect_equal(
      r6$statistics$upper, proc$statistics$upper,
      tolerance = 0.0001
    )
  }
)

Try the cvcqv package in your browser

Any scripts or data that you put into this service are public.

cvcqv documentation built on July 6, 2026, 5:07 p.m.