inst/tinytest/test_adm.R

# Copyright (c) 2025, Avraham Adler All rights reserved
# SPDX-License-Identifier: BSD-2-Clause

tol <- sqrt(.Machine$double.eps)

## Generate Test Data
eff_seed <- sample.int(65536, 1)
set.seed(eff_seed)
x5 <- runif(5, 0, 100)
t5 <- median(x5)
adm5 <- mean(abs(x5 - t5))
y <- c(9, 2, 14, 4)
oneValErr <- "There needs to be at least two values for a robust measure."
badCentErr <- "center must be 'median' or 'mean"
lZero <- double(0)

admTest <- function(x, ct, co = NULL) {

  if (is.null(co)) {
    co <- 1.2533141373155001 # sqrt(pi / 2)
  } else {
    co <- as.double(co)
  }

  co * mean(abs(x - ct))
}

# medianR error trapping
expect_true(is.na(revss:::medianR(lZero)))
expect_true(is.na(revss:::medianR(c(NA, NA))))
expect_true(is.na(revss:::medianR(c(NA, NA), na.rm = TRUE)))
expect_true(is.na(suppressWarnings(revss:::medianR(c(x5, "c")))))
expect_equal(revss:::medianR(c(x5, NA), na.rm = TRUE),
             revss:::medianR(x5), tolerance = tol)
expect_identical(revss:::medianR(c(4, 5, 3)), 4) # Catch all pivots

# ADM
## Mean Absolute Deviation from the Median
expect_equal(adm(x5), adm5 * sqrt(pi / 2), tolerance = tol)
expect_equal(adm(x5), admTest(x5, revss:::medianR(x5)), tolerance = tol)
expect_equal(adm(c(x5, NA), na.rm = TRUE), adm5 * sqrt(pi / 2), tolerance = tol)
expect_equal(adm(x5, constant = 1), adm5, tolerance = tol)
expect_equal(adm(c(x5, NA), constant = 1, na.rm = TRUE), adm5, tolerance = tol)

## Mean Absolute Deviation from the Mean
expect_equal(adm(x5, center = mean(x5)),
             sqrt(pi / 2) * mean(abs(x5 - mean(x5))),
             tolerance = tol)
expect_equal(adm(x5, center = mean(x5)),
             admTest(x5, mean(x5)),
             tolerance = tol)

## Error Trapping
expect_error(adm(4), oneValErr)
expect_true(is.na(suppressWarnings(adm(c(x5, "c")))))
expect_true(is.na(adm(c(x5, NA))))
expect_true(is.na(adm(c(x5, NA), constant = 1)))
expect_true(is.na(adm(lZero)))
expect_true(is.na(adm(NA, na.rm = TRUE)))
expect_true(is.na(adm(1:5, center = "", na.rm = TRUE)))

# Bias reduction factors:
anMADM5 <- 1.1180
anMADML <- 0.5074
anMADMd5 <- 1.2031
anMADMdL <- 0.7558
tstSeq <- 3:20
tstL <- length(tstSeq)
tstM <- mean(tstSeq)
tstMd <- median(tstSeq)

## Mean Absolute Deviation from the Mean
expect_equal(admn(x5, center = "mean"), adm(x5, center = mean(x5)) * anMADM5,
             tolerance = tol)
expect_equal(admn(tstSeq, center = "mean"),
             adm(tstSeq, center = tstM) * tstL / (tstL - anMADML),
             tolerance = tol)

## Mean Absolute Deviation from the Median
expect_equal(admn(x5, center = "median"),
             adm(x5, center = median(x5)) * anMADMd5, tolerance = tol)
expect_equal(admn(tstSeq),
             adm(tstSeq, center = tstMd) *  tstL / (tstL - anMADMdL),
             tolerance = tol)
expect_equal(admn(3:21), # test odd > even
             adm(3:21, center = median(3:21)) * 18 / (18 - anMADMdL),
             tolerance = tol)

expect_error(admn(4), oneValErr)
expect_equal(admn(c(x5, NA), na.rm = TRUE), admn(x5), tolerance = tol)
expect_true(is.na(admn(c(x5, NA))))
expect_true(is.na(suppressWarnings(admn(c(x5, "c")))))
expect_true(is.na(admn(lZero)))
expect_true(is.na(admn(NA, na.rm = TRUE)))
expect_error(admn(1:5, center = "IQR"), badCentErr)

message("Seed for adm test session: ", eff_seed)

Try the revss package in your browser

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

revss documentation built on March 18, 2026, 9:06 a.m.