tests/testthat/test-misc.R

test_that("nn_indices() errors informatively for singular mahalanobis covariance", {
  # More predictors than observations -> singular covariance matrix
  data <- matrix(rnorm(20), nrow = 4, ncol = 5)
  expect_snapshot(error = TRUE, nn_indices(data, 1, "mahalanobis"))
})

test_that("mahalanobis errors informatively for collinear predictors (#246)", {
  # Enough observations to pass the nrow/ncol guard, but x2 = 2 * x1
  data <- cbind(x1 = c(1, 2, 3, 4, 5), x2 = c(2, 4, 6, 8, 10))
  expect_snapshot(error = TRUE, nn_indices(data, 1, "mahalanobis"))

  # Constant column
  data <- cbind(x1 = c(1, 2, 3, 4, 5), x2 = rep(1, 5))
  expect_snapshot(error = TRUE, nn_indices(data, 1, "mahalanobis"))

  # Duplicated rows leave too few distinct observations
  data <- matrix(rep(c(1, 2, 3), each = 5), nrow = 5)
  expect_snapshot(error = TRUE, nn_indices(data, 1, "mahalanobis"))
})

test_that("nn_indices() uses the correct distance metric", {
  # Each case is constructed so the nearest neighbor differs by metric.
  # Row 1 is the query point; we check which of rows 2/3 it picks as neighbor.
  nn1 <- function(ids, row) unname(ids[row, ids[row, ] != row])[[1]]

  # Manhattan vs euclidean:
  # From (0,0): manhattan to (1,0) = 1 < manhattan to (0.6,0.6) = 1.2
  #             euclidean to (1,0) = 1 > euclidean to (0.6,0.6) = 0.849
  data_manh <- matrix(c(0, 0, 1, 0, 0.6, 0.6), ncol = 2, byrow = TRUE)
  expect_equal(nn1(nn_indices(data_manh, 1, "euclidean"), 1), 3L)
  expect_equal(nn1(nn_indices(data_manh, 1, "manhattan"), 1), 2L)

  # Chebyshev vs euclidean:
  # From (0,0): chebyshev to (0.7,0.7) = 0.7 < chebyshev to (0.9,0) = 0.9
  #             euclidean to (0.7,0.7) = 0.99 > euclidean to (0.9,0) = 0.9
  data_cheb <- matrix(c(0, 0, 0.9, 0, 0.7, 0.7), ncol = 2, byrow = TRUE)
  expect_equal(nn1(nn_indices(data_cheb, 1, "euclidean"), 1), 2L)
  expect_equal(nn1(nn_indices(data_cheb, 1, "chebyshev"), 1), 3L)

  # Cosine vs euclidean:
  # (1,1) and (100,100) point in the same direction: cosine distance = 0
  # euclidean distance to (100,100) >> distance to (1.1,0)
  data_cos <- matrix(c(1, 1, 100, 100, 1.1, 0), ncol = 2, byrow = TRUE)
  expect_equal(nn1(nn_indices(data_cos, 1, "euclidean"), 1), 3L)
  expect_equal(nn1(nn_indices(data_cos, 1, "cosine"), 1), 2L)

  # Mahalanobis vs euclidean:
  # Cloud points span ±0.1 in x and ±20 in y, making y-variance ~200x larger.
  # From (0,0): euclidean to (0.5,0) = 0.5 < euclidean to (0,5) = 5
  #             mahalanobis to (0,5) < mahalanobis to (0.5,0) since a step of 5
  #             in y is small relative to the y-variance
  data_mahal <- matrix(
    c(0, 0, 0.5, 0, 0, 5, -0.1, -20, -0.1, 20, 0.1, -20, 0.1, 20),
    ncol = 2,
    byrow = TRUE
  )
  expect_equal(nn1(nn_indices(data_mahal, 1, "euclidean"), 1), 2L)
  expect_equal(nn1(nn_indices(data_mahal, 1, "mahalanobis"), 1), 3L)
})

test_that("nn_dists_cross() returns cosine-distance magnitudes 1 - cos_sim (#244)", {
  query <- matrix(c(1, 0, 1, 1), ncol = 2, byrow = TRUE)
  reference <- matrix(c(0, 1, 2, 0, 3, 3), ncol = 2, byrow = TRUE)

  cos_sim <- (query / sqrt(rowSums(query^2))) %*%
    t(reference / sqrt(rowSums(reference^2)))
  expected <- t(apply(1 - cos_sim, 1, sort))

  d <- nn_dists_cross(query, reference, k = 3, distance = "cosine")
  expect_equal(d, expected)
})

# Rows on the probability simplex, chosen so no two pairwise distances tie.
simplex_fixture <- function() {
  rbind(
    c(0.60, 0.30, 0.10),
    c(0.50, 0.42, 0.08),
    c(0.10, 0.21, 0.69),
    c(0.22, 0.18, 0.60),
    c(0.34, 0.33, 0.33)
  )
}

# Direct formulas for the sqrt-embedded metrics, used to check that the RANN
# search on square-rooted coordinates agrees with the definitions.
divergence_matrix <- function(x, y, distance) {
  f <- switch(
    distance,
    "squared_chord" = \(a, b) sum((sqrt(a) - sqrt(b))^2),
    "matusita" = \(a, b) sqrt(sum((sqrt(a) - sqrt(b))^2)),
    "hellinger" = \(a, b) 2 * sqrt(1 - sum(sqrt(a * b))),
    "bhattacharyya" = \(a, b) -log(sum(sqrt(a * b)))
  )
  outer(
    seq_len(nrow(x)),
    seq_len(nrow(y)),
    Vectorize(function(i, j) f(x[i, ], y[j, ]))
  )
}

test_that("nn_indices() matches brute-force sqrt-embedded divergence neighbors", {
  data <- simplex_fixture()
  expect_nn <- function(distance) {
    d <- divergence_matrix(data, data, distance)
    expected <- t(apply(d, 1, \(x) order(x)[seq_len(3)]))
    expect_equal(nn_indices(data, k = 2, distance), expected)
  }

  expect_nn("squared_chord")
  expect_nn("matusita")
  expect_nn("hellinger")
  expect_nn("bhattacharyya")
})

test_that("nn_indices_cross() matches brute-force sqrt-embedded neighbors", {
  data <- simplex_fixture()
  query <- data[1:2, ]
  reference <- data[3:5, ]
  expect_nn <- function(distance) {
    d <- divergence_matrix(query, reference, distance)
    expected <- t(apply(d, 1, \(x) order(x)[seq_len(2)]))
    expect_equal(nn_indices_cross(query, reference, k = 2, distance), expected)
  }

  expect_nn("squared_chord")
  expect_nn("matusita")
  expect_nn("hellinger")
  expect_nn("bhattacharyya")
})

test_that("nn_dists_cross() returns true divergence magnitudes, not euclidean", {
  data <- simplex_fixture()
  query <- data[1:2, ]
  reference <- data[3:5, ]
  expect_dists <- function(distance) {
    d <- divergence_matrix(query, reference, distance)
    expected <- t(apply(d, 1, \(x) sort(x)[seq_len(2)]))
    expect_equal(nn_dists_cross(query, reference, k = 2, distance), expected)
  }

  expect_dists("squared_chord")
  expect_dists("matusita")
  expect_dists("hellinger")
  expect_dists("bhattacharyya")
})

test_that("bhattacharyya distance is infinite for disjoint support", {
  query <- matrix(c(1, 0, 0, 0), ncol = 2, byrow = TRUE)
  reference <- matrix(c(0, 1), ncol = 2)
  expect_equal(
    nn_dists_cross(query[1, , drop = FALSE], reference, 1, "bhattacharyya"),
    matrix(Inf)
  )
})

test_that("sqrt-embedded metrics reject non-distribution predictors", {
  negative <- rbind(c(0.5, -0.5, 1), c(0.2, 0.3, 0.5))
  expect_snapshot(error = TRUE, nn_indices(negative, 1, "matusita"))

  unnormalized <- rbind(c(1, 2, 3), c(3, 2, 1), c(1, 1, 4))
  expect_snapshot(error = TRUE, nn_indices(unnormalized, 1, "hellinger"))
  expect_snapshot(error = TRUE, nn_indices(unnormalized, 1, "bhattacharyya"))

  # squared_chord and matusita hold off the simplex, so they are allowed
  expect_no_error(nn_indices(unnormalized, 1, "squared_chord"))
  expect_no_error(nn_indices(unnormalized, 1, "matusita"))
})

test_that("metric_backend() routes each metric to one engine", {
  expect_equal(metric_backend("euclidean"), "rann")
  expect_equal(metric_backend("mahalanobis"), "rann")
  expect_equal(metric_backend("hellinger"), "rann")
  expect_equal(metric_backend("manhattan"), "dist")
  expect_equal(metric_backend("chebyshev"), "dist")
  expect_equal(metric_backend("canberra"), "philentropy")
  expect_equal(metric_backend("jensen-shannon"), "philentropy")
})

test_that("philentropy metrics exclude similarity measures and asymmetric ones", {
  # Similarity measures rank closer pairs *higher*, so the ascending neighbor
  # sort would return the farthest rows. philentropy also mirrors one triangle of
  # the matrix, which silently symmetrizes asymmetric measures like KL.
  similarities <- c(
    "intersection",
    "cosine",
    "fidelity",
    "inner_product",
    "harmonic_mean",
    "hassebrook",
    "kulczynski_s",
    "ruzicka"
  )
  expect_equal(intersect(philentropy_metrics(), similarities), character(0))
  expect_equal(
    intersect(philentropy_metrics(), "kullback-leibler"),
    character(0)
  )

  expect_snapshot(error = TRUE, check_distance_arg("intersection"))
  expect_snapshot(error = TRUE, check_distance_arg("kullback-leibler"))
})

test_that("nn_indices() matches philentropy distances for divergence metrics", {
  skip_if_not_installed("philentropy")
  data <- simplex_fixture()

  expect_nn <- function(distance) {
    d <- suppressMessages(philentropy::distance(
      data,
      method = distance,
      test.na = FALSE,
      mute.message = TRUE
    ))
    expected <- t(apply(unname(d), 1, \(x) order(x)[seq_len(3)]))
    expect_equal(nn_indices(data, k = 2, distance), expected)
  }

  expect_nn("canberra")
  expect_nn("soergel")
  expect_nn("lorentzian")
  expect_nn("jeffreys")
  expect_nn("topsoe")
  expect_nn("jensen-shannon")
  expect_nn("jensen_difference")
  expect_nn("taneja")
  expect_nn("kumar-johnson")
})

test_that("nn_dists_cross() returns philentropy magnitudes for divergence metrics", {
  skip_if_not_installed("philentropy")
  data <- simplex_fixture()
  query <- data[1:2, ]
  reference <- data[3:5, ]

  expect_dists <- function(distance) {
    d <- outer(
      seq_len(nrow(query)),
      seq_len(nrow(reference)),
      Vectorize(function(i, j) {
        suppressMessages(philentropy::distance(
          rbind(query[i, ], reference[j, ]),
          method = distance,
          test.na = FALSE,
          mute.message = TRUE
        ))
      })
    )
    expected <- t(apply(d, 1, \(x) sort(x)[seq_len(2)]))
    expect_equal(nn_dists_cross(query, reference, k = 2, distance), expected)
  }

  expect_dists("canberra")
  expect_dists("jensen-shannon")
  expect_dists("taneja")
})

test_that("dense_dist_matrix() handles philentropy's scalar return for 2 rows", {
  skip_if_not_installed("philentropy")
  data <- simplex_fixture()[1:2, ]
  d <- dense_dist_matrix(data, "canberra")

  expect_equal(dim(d), c(2L, 2L))
  expect_equal(diag(d), c(0, 0))
  expect_equal(d[1, 2], d[2, 1])
  expect_equal(nn_indices(data, k = 1, "canberra"), rbind(c(1L, 2L), c(2L, 1L)))
})

test_that("philentropy metrics that divide by values reject zeros", {
  skip_if_not_installed("philentropy")
  # philentropy returns a finite but meaningless number here rather than Inf,
  # so the zero has to be caught before the distance is computed.
  with_zero <- rbind(c(0.5, 0.5, 0.0), c(0.2, 0.3, 0.5), c(0.4, 0.4, 0.2))
  expect_snapshot(error = TRUE, nn_indices(with_zero, 1, "jeffreys"))
  expect_snapshot(error = TRUE, nn_indices(with_zero, 1, "taneja"))
  expect_snapshot(error = TRUE, nn_indices(with_zero, 1, "kumar-johnson"))

  # zero-safe divergences accept the same data
  expect_no_error(nn_indices(with_zero, 1, "jensen-shannon"))
  expect_no_error(nn_indices(with_zero, 1, "canberra"))
  expect_no_error(nn_indices(with_zero, 1, "topsoe"))
})

test_that("philentropy metrics reject negative predictors", {
  skip_if_not_installed("philentropy")
  negative <- rbind(c(0.5, -0.5, 1), c(0.2, 0.3, 0.5), c(0.4, 0.4, 0.2))
  expect_snapshot(error = TRUE, nn_indices(negative, 1, "canberra"))
})

test_that("mahalanobis whitening reproduces stats::mahalanobis distances (#237)", {
  set.seed(1)
  n <- 200
  x1 <- rnorm(n)
  data <- cbind(x1, 2 * x1 + rnorm(n, sd = 0.3), rnorm(n), x1 - rnorm(n))
  S <- stats::cov(data)

  whitened <- data %*% solve(chol(S))
  center <- whitened[1, ]
  themis_d2 <- rowSums(sweep(whitened, 2, center)^2)
  true_d2 <- stats::mahalanobis(data, data[1, ], S)

  expect_equal(themis_d2, unname(true_d2))
})

test_that("drop_self_neighbor() removes self by row index for duplicates (#247)", {
  # Self in the first column (typical, non-duplicate case)
  idx <- rbind(c(1L, 2L, 3L), c(2L, 1L, 3L), c(3L, 1L, 2L))
  expect_identical(
    drop_self_neighbor(idx),
    rbind(c(2L, 3L), c(1L, 3L), c(1L, 2L))
  )

  # Self not in the first column (duplicate coordinates)
  idx <- rbind(c(2L, 1L, 3L), c(1L, 2L, 3L))
  expect_identical(drop_self_neighbor(idx), rbind(c(2L, 3L), c(1L, 3L)))

  # Self missing entirely: drop the farthest (last) neighbor
  idx <- rbind(c(2L, 3L, 4L), c(3L, 4L, 1L))
  expect_identical(drop_self_neighbor(idx), rbind(c(2L, 3L), c(3L, 4L)))
})

test_that("over_target() and under_target() apply a single ratio to every class", {
  counts <- table(factor(c(rep("a", 10), rep("b", 20), rep("c", 40))))

  expect_identical(over_target(counts, 1), c(a = 40, b = 40, c = 40))
  expect_identical(over_target(counts, 0.5), c(a = 20, b = 20, c = 20))
  expect_identical(under_target(counts, 1), c(a = 10, b = 10, c = 10))
  expect_identical(under_target(counts, 2), c(a = 20, b = 20, c = 20))
})

test_that("over_target() and under_target() leave unnamed classes untouched", {
  counts <- table(factor(c(rep("a", 10), rep("b", 20), rep("c", 40))))

  expect_identical(
    over_target(counts, c(a = 1, b = 0.5)),
    c(a = 40, b = 20, c = 40)
  )
  expect_identical(under_target(counts, c(c = 2)), c(a = 10, b = 20, c = 20))

  # Order of the names does not matter, targets stay aligned to `counts`
  expect_identical(
    over_target(counts, c(b = 0.5, a = 1)),
    over_target(counts, c(a = 1, b = 0.5))
  )
})

test_that("ratio_target() handles zero-length counts", {
  counts <- table(factor(character(0)))

  expect_identical(over_target(counts, 1), stats::setNames(numeric(0), NULL))
  expect_snapshot(error = TRUE, over_target(counts, c(a = 1)))
})

test_that("check_ratio() accepts a single number and a named numeric vector", {
  expect_null(check_ratio(1))
  expect_null(check_ratio(0))
  expect_null(check_ratio(c(a = 1, b = 0.5)))
  expect_null(check_ratio(c(a = 1)))
})

test_that("check_ratio() rejects malformed ratios", {
  expect_snapshot(error = TRUE, check_ratio(-1, arg = "over_ratio"))
  expect_snapshot(
    error = TRUE,
    check_ratio(c(a = 1, b = -1), arg = "over_ratio")
  )
  expect_snapshot(error = TRUE, check_ratio(c(1, 2), arg = "over_ratio"))
  expect_snapshot(error = TRUE, check_ratio(c(a = 1, 2), arg = "over_ratio"))
  expect_snapshot(
    error = TRUE,
    check_ratio(c(a = 1, a = 2), arg = "over_ratio")
  )
  expect_snapshot(
    error = TRUE,
    check_ratio(c(a = 1, b = NA), arg = "over_ratio")
  )
  expect_snapshot(error = TRUE, check_ratio(c(a = "1"), arg = "over_ratio"))
})

test_that("ratio_target() errors on names that are not levels", {
  counts <- table(factor(c(rep("a", 10), rep("b", 20))))

  expect_snapshot(error = TRUE, over_target(counts, c(a = 1, potato = 2)))

  # A level with zero observations has been dropped from `counts`
  counts_zero <- table(droplevels(factor(
    c("a", "b"),
    levels = c("a", "b", "c")
  )))
  expect_snapshot(error = TRUE, under_target(counts_zero, c(c = 1)))
})

test_that("check_scalar_ratio() rejects a named vector", {
  expect_null(check_scalar_ratio(1, arg = "over_ratio"))
  expect_snapshot(
    error = TRUE,
    check_scalar_ratio(c(a = 1), arg = "over_ratio")
  )
})

Try the themis package in your browser

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

themis documentation built on Aug. 2, 2026, 9:07 a.m.