tests/testthat/test-mapper_general.R

test_that("Linear mapper", {
  mapper <- bm_linear()

  input <- seq_len(4)
  state <- 10
  input_length <- length(input)
  expect_equal(ibm_n(mapper), 1)
  expect_equal(ibm_n_output(mapper, input = input), input_length)
  expect_equal(ibm_values(mapper), 1)
  expect_equal(ibm_values(mapper, inla_f = TRUE), 1)
  expect_equal(
    ibm_eval(mapper, input = input, state = state),
    input * state
  )
  expect_equal(
    ibm_eval(
      ibm_as_taylor(mapper, input = input, state = state),
      state = state
    ),
    input * state
  )
})


test_that("Index mapper", {
  values <- seq_len(4)
  state <- c(10, 20, 30, 40)
  mapper <- bm_index(max(values))
  input <- c(2, 2, 1, 3)
  val <- state[input]

  values_length <- length(values)
  input_length <- length(input)
  expect_equal(ibm_n(mapper), values_length)
  expect_equal(ibm_n_output(mapper, input = input), input_length)
  expect_equal(ibm_values(mapper), values)
  expect_equal(ibm_values(mapper, inla_f = TRUE), values)
  expect_equal(
    ibm_eval(mapper, input = input, state = state),
    val
  )
  expect_equal(
    ibm_eval(
      ibm_as_taylor(mapper, input = input, state = state),
      state = state
    ),
    val
  )
})


test_that("Factor mapper", {
  all_values <-
    list(
      full = c("a", "b", "c"),
      contrast = c("b", "c")
    )
  all_state <-
    list(
      full = c(a = 10, b = 30, c = 60),
      contrast = c(b = 20, c = 50)
    )
  for (factor_mapping in rev(c("full", "contrast"))) {
    values <- all_values[[factor_mapping]]
    mapper <- bm_factor(all_values[["full"]], factor_mapping = factor_mapping)

    input <- c("b", "b", "a", "c")
    state <- all_state[[factor_mapping]]
    val <- {
      val <- rep(0, length(input))
      ok <- input %in% names(state)
      val[ok] <- state[input[ok]]
      val
    }

    values_length <- length(values)
    input_length <- length(input)
    expect_equal(ibm_n(mapper), values_length)
    expect_equal(ibm_n_output(mapper, input = input), input_length)
    expect_equal(ibm_values(mapper), values)
    expect_equal(ibm_values(mapper, inla_f = TRUE), values)
    expect_equal(
      ibm_eval(mapper, input = input, state = state),
      val
    )
    expect_equal(
      ibm_eval(
        ibm_as_taylor(mapper, input = input, state = state),
        state = state
      ),
      val
    )
  }
})


test_that("Automated factor releveling", {
  skip_on_cran()
  local_bru_safe_inla()
  skip_if_not_installed("sf")

  pts <- sf::st_as_sf(
    data.frame(
      x = runif(20),
      y = runif(20),
      category = factor(
        sample(c("Alpha", "Beta", "Gamma"), 20, TRUE),
        levels = c("Alpha", "Beta", "Gamma")
      )
    ),
    coords = c("x", "y"),
    crs = 5070
  )

  boundary <- sf::st_sf(
    geometry = sf::st_sfc(
      sf::st_polygon(list(rbind(
        c(0, 0),
        c(1, 0),
        c(1, 1),
        c(0, 1),
        c(0, 0)
      ))),
      crs = 5070
    )
  )

  mesh <- fmesher::fm_mesh_2d(
    boundary = boundary,
    max.edge = 0.5,
    cutoff = 0.1,
    crs = sf::st_crs(boundary)
  )

  ips <- fmesher::fm_int(list(geometry = mesh), boundary)

  ips$category <- factor(
    sample(c("Alpha", "Beta", "Gamma"), nrow(ips), TRUE),
    levels = c("Alpha", "Beta", "Gamma")
  )

  cmp <- geometry ~ Intercept(1) +
    category(category, model = "factor_contrast")

  # Relevel pts only, which is ok since dplyr::bind_rows() relevels the ips
  # to the levels of pts.
  pts$category <- relevel(pts$category, ref = "Beta")

  fit <- bru(
    cmp,
    bru_obs(
      geometry ~ .,
      data = pts,
      family = "cp",
      ips = ips
    ),
    options = list(bru_run = FALSE)
  )

  lev <- as_bru_comp_list(fit)$category$mapper$mappers$core$mappers$main$levels
  expect_equal(lev, c("Beta", "Alpha", "Gamma"))

  # Also relevel ips:
  ips$category <- relevel(ips$category, ref = "Beta")

  fit <- bru(
    cmp,
    bru_obs(
      geometry ~ .,
      data = pts,
      family = "cp",
      ips = ips
    ),
    options = list(bru_run = FALSE)
  )

  lev <- as_bru_comp_list(fit)$category$mapper$mappers$core$mappers$main$levels
  expect_equal(lev, c("Beta", "Alpha", "Gamma"))

  # Relevel again, to check inconsistent levels are noticed:
  ips$category <- relevel(ips$category, ref = "Gamma")

  pts$z <- rnorm(nrow(pts))
  ips$z <- rnorm(nrow(ips))

  expect_error(
    bru(
      cmp,
      bru_obs(
        z ~ .,
        data = pts
      ),
      bru_obs(
        z ~ .,
        data = ips
      ),
      options = list(bru_run = FALSE)
    ),
    "Inconsistent factor levels. Unable to infer mapper information."
  )
})


test_that("Pipe mapper", {
  mapper <-
    bm_pipe(
      list(
        bm_multi(list(
          space = bm_index(4),
          time = bm_index(3)
        )),
        bm_scale()
      )
    )

  expect_equal(ibm_n(mapper), 12)
  expect_equal(
    ibm_n(mapper, multi = TRUE),
    list(space = 4, time = 3)
  )
  expect_equal(ibm_values(mapper), seq_len(12))
  expect_equal(
    as.data.frame(ibm_values(mapper, multi = TRUE)),
    expand.grid(space = seq_len(4), time = seq_len(3)),
    ignore_attr = TRUE
  )

  olist_data <-
    list(
      list(space = 2:4, time = 1:3),
      2
    )
  A <- Matrix::sparseMatrix(
    i = 1:3,
    j = c(2, 7, 12),
    x = 1 * 2,
    dims = c(3, 12)
  )
  expect_equal(ibm_jacobian(mapper, olist_data), A)
})


test_that("Aggregate mapper", {
  mapper <- bm_aggregate(rescale = FALSE)

  expect_equal(ibm_n(mapper), NA_integer_)
  expect_equal(
    ibm_n(mapper, state = c(1, 1)),
    2
  )
  expect_equal(
    ibm_n_output(mapper, input = list(block = c(1, 2, 2))),
    2
  )
  expect_equal(ibm_values(mapper, state = c(1, 1)), seq_len(2))

  input <-
    list(block = c(1, 2, 2, 1, 3), weights = c(1, 1, 1, 2, 3))
  state <- c(1, 2, 3, 4, 5)

  val <- c(9, 5, 15)
  A <- Matrix::sparseMatrix(
    i = c(1, 1, 2, 2, 3),
    j = c(1, 4, 2, 3, 5),
    x = c(1, 2, 1, 1, 3),
    dims = c(3, 5)
  )
  expect_equal(ibm_eval(mapper, input = input, state = state), val)
  expect_equal(ibm_jacobian(mapper, input = input, state = state), A)

  mapper <- bm_aggregate(rescale = TRUE)

  expect_equal(ibm_n(mapper), NA_integer_)
  expect_equal(
    ibm_n(mapper, state = c(1, 1)),
    2
  )
  expect_equal(
    ibm_n_output(mapper, input = list(block = c(1, 2, 2))),
    2
  )
  expect_equal(ibm_values(mapper, state = c(1, 1)), seq_len(2))

  val <- c(3, 2.5, 5)
  A <- Matrix::sparseMatrix(
    i = c(1, 1, 2, 2, 3),
    j = c(1, 4, 2, 3, 5),
    x = c(1 / 3, 2 / 3, 1 / 2, 1 / 2, 3 / 3),
    dims = c(3, 5)
  )
  expect_equal(ibm_eval(mapper, input = input, state = state), val)
  expect_equal(ibm_jacobian(mapper, input = input, state = state), A)

  withr::local_seed(123L)
  delta <- (runif(length(state)) * 2 - 1) * 1e-6
  num_deriv <-
    (ibm_eval(mapper, input = input, state = state + delta) -
      ibm_eval(mapper, input = input, state = state - delta)) /
    (2 * sum(delta^2)^0.5)
  jac_deriv <-
    as.vector(
      ibm_jacobian(mapper, input = input, state = state) %*%
        (delta / sum(delta^2)^0.5)
    )
  expect_equal(
    num_deriv,
    jac_deriv,
    tolerance = lowtol
  )
})


test_that("logsumexp mapper", {
  mapper <- bm_logsumexp(rescale = FALSE)

  expect_equal(ibm_n(mapper), NA_integer_)
  expect_equal(
    ibm_n(mapper, state = c(1, 1)),
    2
  )
  expect_equal(
    ibm_n_output(mapper, input = list(block = c(1, 2, 2))),
    2
  )
  expect_equal(ibm_values(mapper, state = c(1, 1)), seq_len(2))

  state <- c(1, 2, 3, 4, 5)

  # Test default input handling
  # Should treat NULL group and weights as all-1, but input needs to be supplied
  expect_equal(
    ibm_eval(mapper, input = NULL, state = state),
    5.451914,
    tolerance = lowtol
  )
  expect_equal(
    ibm_eval(mapper, input = NULL, state = state),
    5.451914,
    tolerance = lowtol
  )

  input <-
    list(block = c(1, 2, 2, 1, 3), weights = c(1, 1, 1, 2, 3))

  val <- c(4.717736, 3.313262, 6.098612)
  A <- Matrix::sparseMatrix(
    i = c(1, 1, 2, 2, 3),
    j = c(1, 4, 2, 3, 5),
    x = c(0.0242889, 0.9757111, 0.2689414, 0.7310586, 1),
    dims = c(3, 5)
  )
  expect_equal(
    ibm_eval(mapper, input = input, state = state),
    val,
    tolerance = lowtol
  )
  expect_equal(
    ibm_eval(mapper, input = input, state = state, log = FALSE),
    exp(val),
    tolerance = lowtol
  )
  expect_equal(
    ibm_jacobian(mapper, input = input, state = state),
    A,
    tolerance = midtol
  )

  mapper <- bm_logsumexp(rescale = TRUE)

  expect_equal(ibm_n(mapper), NA_integer_)
  expect_equal(
    ibm_n(mapper, state = c(1, 1)),
    2
  )
  expect_equal(
    ibm_n_output(mapper, input = list(block = c(1, 2, 2))),
    2
  )
  expect_equal(ibm_values(mapper, state = c(1, 1)), seq_len(2))

  val <- c(3.619124, 2.620115, 5)
  A <- Matrix::sparseMatrix(
    i = c(1, 1, 2, 2, 3),
    j = c(1, 4, 2, 3, 5),
    x = c(0.0242889, 0.9757111, 0.2689414, 0.7310586, 1),
    dims = c(3, 5)
  )
  expect_equal(
    ibm_eval(mapper, input = input, state = state),
    val,
    tolerance = lowtol
  )
  expect_equal(
    ibm_eval(mapper, input = input, state = state, log = FALSE),
    exp(val),
    tolerance = lowtol
  )
  expect_equal(
    ibm_jacobian(mapper, input = input, state = state),
    A,
    tolerance = midtol
  )

  withr::local_seed(123L)
  delta <- (runif(length(state)) * 2 - 1) * 1e-6
  num_deriv <-
    (ibm_eval(mapper, input = input, state = state + delta) -
      ibm_eval(mapper, input = input, state = state - delta)) /
    (2 * sum(delta^2)^0.5)
  jac_deriv <-
    as.vector(
      ibm_jacobian(mapper, input = input, state = state) %*%
        (delta / sum(delta^2)^0.5)
    )
  expect_equal(
    num_deriv,
    jac_deriv,
    tolerance = lowtol
  )
})


test_that("Multi-mapper bru input", {
  mapper <- bm_multi(list(
    space = bm_index(4),
    time = bm_index(3)
  ))
  expect_equal(ibm_n(mapper), 12)
  expect_equal(ibm_n(mapper, multi = 1), list(space = 4, time = 3))
  expect_equal(ibm_values(mapper), seq_len(12))
  expect_equal(
    as.data.frame(ibm_values(mapper, multi = 1)),
    expand.grid(space = seq_len(4), time = seq_len(3)),
    ignore_attr = TRUE
  )

  list_data <- list(time = 1:3, space = 2:4)
  olist_data <- list(space = 2:4, time = 1:3)
  df_data <- as.data.frame(list_data)
  matrix_data <- cbind(time = 1:3, space = 2:4)
  omatrix_data <- cbind(2:4, 1:3)
  A <- Matrix::sparseMatrix(
    i = 1:3,
    j = c(2, 7, 12),
    x = 1,
    dims = c(3, 12)
  )
  withr::local_seed(123L)
  state <- rnorm(12)
  val <- as.vector(A %*% state)
  expect_equal(ibm_eval(mapper, list_data, state = state), val)
  expect_equal(ibm_eval(mapper, olist_data, state = state), val)
  expect_equal(ibm_eval(mapper, df_data, state = state), val)
  expect_equal(ibm_eval(mapper, matrix_data, state = state), val)
  expect_equal(ibm_eval(mapper, omatrix_data, state = state), val)

  expect_equal(ibm_jacobian(mapper, list_data), A)
  expect_equal(ibm_jacobian(mapper, olist_data), A)
  expect_equal(ibm_jacobian(mapper, df_data), A)
  expect_equal(ibm_jacobian(mapper, matrix_data), A)
  expect_equal(ibm_jacobian(mapper, omatrix_data), A)
})

test_that("Multi-mapper bru input with offset", {
  mapper <- bm_multi(
    list(
      space = bm_pipe(
        list(mapper = bm_index(4), offset = bm_shift())
      ),
      time = bm_index(3)
    )
  )
  expect_equal(ibm_n(mapper), 12)
  expect_equal(ibm_n(mapper, multi = 1), list(space = 4, time = 3))
  expect_equal(ibm_values(mapper), seq_len(12))
  expect_equal(
    as.data.frame(ibm_values(mapper, multi = 1)),
    expand.grid(space = seq_len(4), time = seq_len(3)),
    ignore_attr = TRUE
  )

  list_data <- list(time = 1:3, space = list(mapper = 2:4, offset = 3:5))
  olist_data <- list(space = list(mapper = 2:4, offset = 3:5), time = 1:3)
  A <- Matrix::sparseMatrix(
    i = 1:3,
    j = c(2, 7, 12),
    x = 1,
    dims = c(3, 12)
  )
  withr::local_seed(123L)
  state <- rnorm(12)
  val <- list_data$space$offset + as.vector(A %*% state)
  expect_equal(ibm_eval(mapper, list_data, state = state), val)
  expect_equal(ibm_eval(mapper, olist_data, state = state), val)
  expect_equal(
    ibm_eval(mapper, list_data, state = NULL),
    list_data$space$offset
  )
  expect_equal(
    ibm_eval(mapper, olist_data, state = NULL),
    list_data$space$offset
  )

  expect_equal(ibm_jacobian(mapper, list_data), A)
  expect_equal(ibm_jacobian(mapper, olist_data), A)
  expect_equal(ibm_jacobian(mapper, list_data, state = NULL), A)
  expect_equal(ibm_jacobian(mapper, olist_data, state = NULL), A)
})


test_that("User defined mappers", {
  # .S3method was unavailable in R 3.6!
  skip_if_not(utils::compareVersion("4", R.Version()$major) <= 0)

  # User defined mapper objects

  ibm_jacobian.bm_test <- function(mapper, input, ...) {
    message("---- IBM_JACOBIAN from inner environment ----")
    Matrix::sparseMatrix(
      i = seq_along(input),
      j = input,
      x = rep(2, length(input)),
      dims = c(length(input), mapper$n)
    )
  }
  .S3method("ibm_jacobian", "bm_test", ibm_jacobian.bm_test)

  bm_test <- function(n, ...) {
    bru_mapper_define(
      list(n = n),
      new_class = "bm_test"
    )
  }

  m <- bm_test(n = 20)
  cmp <- y ~ -1 + indep(x, model = "iid", mapper = m)
  mydata <- data.frame(y = rnorm(15) + 2 * (1:15), x = 1:15)
  suppressMessages({
    expect_message(
      object = {
        ibm_jacobian(m, mydata$x)
      },
      "---- IBM_JACOBIAN from inner environment ----",
      label = "ibm_jacobian generic call"
    )
  })

  skip_on_cran()
  local_bru_safe_inla()

  suppressMessages({
    expect_message(
      object = {
        fit <- bru(cmp, data = mydata, family = "gaussian")
      },
      "---- IBM_JACOBIAN from inner environment ----",
      label = "Non-interactive bru() call"
    )
  })
})


test_that("Collect mapper, direct construction", {
  skip_on_cran()
  withr::local_seed(1234L)

  mapper <- bm_collect(
    list(
      u = bm_index(4),
      v = bm_index(4)
    ),
    hidden = TRUE
  )
  expect_equal(ibm_n(mapper), 8)
  expect_equal(ibm_n(mapper, inla_f = TRUE), 4)
  expect_equal(ibm_n(mapper, multi = 1), list(u = 4, v = 4))
  expect_equal(ibm_values(mapper), seq_len(8))
  expect_equal(ibm_values(mapper, inla_f = TRUE), seq_len(4))
  expect_equal(
    as.data.frame(ibm_values(mapper, multi = 1)),
    list(u = seq_len(4), v = seq_len(4)),
    ignore_attr = TRUE
  )

  list_data <- list(u = 1:3, v = 2:4)
  A <- Matrix::bdiag(
    Matrix::sparseMatrix(
      i = 1:3,
      j = 1:3,
      x = 1,
      dims = c(3, 4)
    ),
    Matrix::sparseMatrix(
      i = 1:3,
      j = 2:4,
      x = 1,
      dims = c(3, 4)
    )
  )
  A <- as(as(as(A, "dMatrix"), "generalMatrix"), "TsparseMatrix")
  expect_equal(ibm_jacobian(mapper, list_data), A)
  expect_equal(
    as(
      ibm_jacobian(mapper, list_data[["u"]], inla_f = TRUE)[,
        ibm_inla_subset(mapper),
        drop = FALSE
      ],
      "dgTMatrix"
    ),
    as(
      A[
        seq_along(list_data[["u"]]),
        ibm_inla_subset(mapper),
        drop = FALSE
      ],
      "dgTMatrix"
    )
  )
})


test_that("Collect mapper, automatic construction", {
  skip_on_cran()
  local_bru_safe_inla()

  data <- data.frame(val = 1:3, y = 1:3)

  mapper <- bm_collect(
    list(
      u = bm_index(4),
      v = bm_index(4)
    ),
    hidden = TRUE
  )

  cmp1 <- y ~
    -1 +
    indep(val, model = "bym2", mapper = mapper, graph = Matrix::Diagonal(4) + 1)

  cmp2 <- y ~
    -1 +
    indep(val, model = "bym2", n = 4, graph = Matrix::Diagonal(4) + 1)

  cmp3 <- y ~
    -1 +
    indep(val, model = "bym2", graph = Matrix::Diagonal(4) + 1)

  lik <- bru_obs(formula = y ~ ., data = data)

  cmp1 <- bru_comp_list(cmp1, lhoods = bru_obs_list(list(lik)))
  cmp2 <- bru_comp_list(cmp2, lhoods = bru_obs_list(list(lik)))
  cmp3 <- bru_comp_list(cmp3, lhoods = bru_obs_list(list(lik)))

  for (inla_f in c(FALSE, TRUE)) {
    n <- ibm_n(cmp1$indep$mapper, inla_f = inla_f)
    expect_identical(
      n,
      if (inla_f) 4 else 8
    )
    expect_identical(
      ibm_n(cmp2$indep$mapper, inla_f = inla_f),
      n
    )
    expect_identical(
      ibm_n(cmp3$indep$mapper, inla_f = inla_f),
      n
    )

    values <- ibm_values(cmp1$indep$mapper, inla_f = inla_f)
    expect_identical(
      ibm_values(cmp2$indep$mapper, inla_f = inla_f),
      values
    )
    expect_identical(
      ibm_values(cmp3$indep$mapper, inla_f = inla_f),
      values
    )

    if (inla_f) {
      input <- list(
        core = list(
          main = data$val,
          group = rep(1, 3),
          replicate = rep(1, 3)
        )
      )
    } else {
      input <- list(
        core = list(
          main = list(u = data$val),
          group = rep(1, 3),
          replicate = rep(1, 3)
        )
      )
    }

    J <- as.matrix(ibm_jacobian(
      cmp1$indep$mapper,
      input = input,
      inla_f = inla_f
    ))

    expect_identical(
      as.matrix(ibm_jacobian(
        cmp2$indep$mapper,
        input = input,
        inla_f = inla_f
      )),
      J
    )
    expect_identical(
      as.matrix(ibm_jacobian(
        cmp3$indep$mapper,
        input = input,
        inla_f = inla_f
      )),
      J
    )
  }
})


test_that("Collect mapper works", {
  skip_on_cran()
  local_bru_safe_inla()

  graph <- Matrix::sparseMatrix(
    i = c(1, 2, 3, 2, 3, 4),
    j = c(2, 3, 4, 1, 2, 3),
    x = rep(1, 6),
    dims = c(4, 4)
  )

  withr::local_seed(12345L)
  data <- data.frame(
    y = 4 + rnorm(6),
    x = c(1, 2, 3, 2, 3, 4)
  )

  fit_inla <- INLA::inla(
    y ~ 1 + f(x, model = "bym", graph = graph),
    data = data
  )

  local_bru_options_set(bru_method = list(autodiff = "pandemic"))
  expect_no_error({
    fit_bru <-
      bru(
        ~ Intercept(1) + field(x, model = "bym", graph = graph),
        formula = y ~ Intercept + field,
        data = data,
        options = list(bru_initial = list(field = rep(10, 8)))
      )
  })
  local_bru_options_set(bru_method = list(autodiff = "fullchain"))
  expect_no_error({
    fit_bru <-
      bru(
        ~ Intercept(1) + field(x, model = "bym", graph = graph),
        formula = y ~ Intercept + field,
        data = data,
        options = list(bru_initial = list(field = rep(10, 8)))
      )
  })
})


test_that("Marginal mapper", {
  m1 <- bm_marginal(qexp, pexp, rate = 1 / 8)
  state0 <- -5:5
  val1 <- ibm_eval(m1, state = state0)

  state1 <- ibm_eval(m1, state = val1, reverse = TRUE)
  expect_equal(state1, state0)

  m2 <- bm_marginal(qexp, pexp, rate = 1 / 8, inverse = TRUE)
  state2 <- ibm_eval(m2, state = val1)
  expect_equal(state2, state0)

  val2 <- ibm_eval(m2, state = state2, reverse = TRUE)
  expect_equal(val2, val1)

  dqexp <- function(
    p,
    rate = 1,
    lower.tail = TRUE,
    log.p = FALSE,
    log = FALSE
  ) {
    if (log.p) {
      if (lower.tail) {
        val <- log1p(-exp(p)) + log(rate)
      } else {
        val <- p + log(rate)
      }
    } else {
      if (lower.tail) {
        val <- log1p(-p) + log(rate)
      } else {
        val <- log(p) + log(rate)
      }
    }
    if (log) {
      return(val)
    }
    exp(val)
  }
  m1_d <- bm_marginal(qexp, pexp, dexp, rate = 1 / 8)
  m1_dq <- bm_marginal(qexp, pexp, NULL, dqexp, rate = 1 / 8)
  jac1 <- ibm_jacobian(m1, state = state0)
  jac1_d <- ibm_jacobian(m1_d, state = state0)
  jac1_dq <- ibm_jacobian(m1_dq, state = state0)
  # rbind(diag(jac1), diag(jac1_d), diag(jac1_dq))
  expect_equal(sum(abs(diag(jac1) - diag(jac1_d))), 0, tolerance = lowtol)
  expect_equal(sum(abs(diag(jac1_d) - diag(jac1_dq))), 0, tolerance = lowtol)
})


test_that("Mapper lists", {
  m1 <- bm_index(4L)
  m2 <- bm_index(3L)

  expect_s3_class(c(m1), "bm_list")
  expect_s3_class(c(m1, m2), "bm_list")
  expect_s3_class(c(c(m1, m2), c(m2, m1)), "bm_list")
})

test_that("Mesh 1d mapper", {
  m <- bru_mapper(fmesher::fm_mesh_1d(1:5, boundary = "f"), indexed = TRUE)

  loc <- seq(-2, 7, by = 0.5)
  val <- ibm_eval(m, input = loc, state = seq_len(ibm_n(m)))
  expect_length(val, length(loc))
  expect_equal(val, loc)

  m <- bru_mapper(
    fmesher::fm_mesh_1d(c(1, 2, 4, 6, 9), boundary = "f"),
    indexed = FALSE
  )
  expect_equal(ibm_values(m), c(1, 2, 4, 6, 9))
})

test_that("Mesh 2d mapper", {
  m <- bru_mapper(fmesher::fmexample$mesh)

  loc <- fmesher::fm_pixels(
    fmesher::fmexample$mesh,
    dims = c(5, 5),
    mask = FALSE
  )
  val <- ibm_eval(m, input = loc, state = seq_len(ibm_n(m)))
  expect_length(val, 25)

  loc <- fmesher::fm_pixels(
    fmesher::fmexample$mesh,
    dims = c(5, 5),
    mask = TRUE
  )
  val <- ibm_eval(m, input = loc, state = seq_len(ibm_n(m)))
  expect_length(val, 9)
})


test_that("Repeat mapper, direct construction", {
  withr::local_seed(1234L)

  mapper <- bm_repeat(
    bm_index(4),
    n_rep = 3
  )
  expect_equal(ibm_n(mapper), 12)
  expect_equal(ibm_values(mapper), seq_len(12))

  data <- 3:1
  A <- Matrix::sparseMatrix(
    i = 1:3,
    j = data,
    x = 1,
    dims = c(3, 4)
  )
  A <- cbind(A, A, A)
  A <- as(as(as(A, "dMatrix"), "generalMatrix"), "CsparseMatrix")
  expect_equal(ibm_jacobian(mapper, data), A)
})


test_that("Repeat mapper works", {
  skip_on_cran()
  local_bru_safe_inla()

  withr::local_seed(12345L)
  u <- rnorm(8)
  data <- data.frame(
    x = c(1, 2, 3, 2, 3, 4)
  )
  data$y <- 4 + u[data$x] + u[data$x + 4L]

  expect_no_error({
    fit_bru <-
      bru(
        y ~ Intercept(1) +
          field(
            x,
            model = "iid",
            mapper = bm_repeat(bm_index(4), n_rep = 2)
          ),
        data = data,
        control.family = list(
          hyper = list(
            prec = list(
              initial = log(1e8),
              fixed = TRUE
            )
          )
        ),
        options = list(bru_initial = list(field = rep(10, 8)))
      )
  })
})

test_that("Reparam mapper works", {
  skip_on_cran()
  local_bru_safe_inla()

  withr::local_seed(12345L)
  u <- rnorm(8)
  data <- data.frame(
    x = rep_len(c(1, 2, 3, 2, 3, 4, 5, 6, 7, 8), 10 * 2)
  )
  data$y <- c(
    u[1L:4L] + cumsum(u[5L:8L]),
    cumsum(u[5L:8L])
  )[data$x]

  B <- rbind(
    c(1, 0, 0, 0, 1, 0, 0, 0),
    c(0, 1, 0, 0, 1, 1, 0, 0),
    c(0, 0, 1, 0, 1, 1, 1, 0),
    c(0, 0, 0, 1, 1, 1, 1, 1),
    c(0, 0, 0, 0, 1, 0, 0, 0),
    c(0, 0, 0, 0, 1, 1, 0, 0),
    c(0, 0, 0, 0, 1, 1, 1, 0),
    c(0, 0, 0, 0, 1, 1, 1, 1)
  )

  expect_no_error({
    fit_bru_pipe <-
      bru(
        ~ 0 +
          field(
            list(AA = B, BB = x),
            model = "iid",
            mapper = bm_pipe(list(AA = bm_matrix(ncol(B)), BB = bm_index(8))),
            constr = FALSE
          ),
        bru_obs(
          formula = y ~ .,
          data = data,
          control.family = list(
            hyper = list(
              prec = list(
                initial = log(1e8),
                fixed = TRUE
              )
            )
          )
        ),
        options = list(bru_initial = list(field = rep(10, 8)))
      )
  })
  expect_no_error({
    fit_bru_reparam <-
      bru(
        ~ 0 +
          field(
            x,
            model = "iid",
            mapper = bm_reparam(bm_index(8), B = B)
          ),
        bru_obs(
          formula = y ~ .,
          data = data,
          control.family = list(
            hyper = list(
              prec = list(
                initial = log(1e8),
                fixed = TRUE
              )
            )
          )
        ),
        options = list(bru_initial = list(field = rep(10, 8)))
      )
  })
  expect_equal(
    fit_bru_pipe$summary.fixed,
    fit_bru_reparam$summary.fixed,
    tolerance = midtol
  )

  expect_equal(
    fit_bru_pipe$summary.random$field,
    fit_bru_reparam$summary.random$field,
    tolerance = midtol
  )

  expect_equal(
    fit_bru_pipe$summary.hyperpar,
    fit_bru_reparam$summary.hyperpar,
    tolerance = midtol
  )
})

Try the inlabru package in your browser

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

inlabru documentation built on July 28, 2026, 9:07 a.m.