R/shoot_engine.R

Defines functions choose_highlight fit_specs_batch fit_spec

# Engine: dispatch a spec to its family fitter and return a tidy
# result row. The actual fitters live in R/families.R; this file
# stays as the small dispatch + highlight-selection surface.
#
# v1 supports lm (.lm.fit) and glm (glm.fit). GAM (mgcv) and GLMM
# (lme4) plug into FAMILIES as separate fitters in later phases.

fit_spec <- function(df, outcome, spec) {
  fam_name <- spec$family$fitter %||% "lm"
  fitter   <- tryCatch(family_fitter(fam_name), error = function(e) NULL)
  if (is.null(fitter)) return(NULL)
  fitter(df, outcome, spec)
}

# Batch dispatcher: fits a list of specs in one pass. Groups specs by
# family, then delegates each group to the family's batch_fitter from
# the FAMILIES registry (see R/families.R). lm goes through the C++
# kernel today; every other family currently loops the single-spec
# fitter under the same scaffold, so a future *_fit_batch_cpp() drops
# in by rewriting one fit_*_batch wrapper -- no change here.
#
# Returns results in the same order as `specs`, with NULLs preserved
# for fits that fail to materialise. The shoot() loop calls this in
# mini-batches so the search state still gets per-fit feedback inside
# record_result(), just at coarser cadence than one-spec-at-a-time.
fit_specs_batch <- function(df, outcome, specs) {
  if (!length(specs)) return(list())
  fam <- vapply(specs,
                function(s) s$family$fitter %||% "lm",
                character(1))
  out <- vector("list", length(specs))

  for (this_fam in unique(fam)) {
    idx <- which(fam == this_fam)
    batch_fn <- tryCatch(family_batch_fitter(this_fam),
                         error = function(e) NULL)
    # Unknown / unregistered families fall back to per-spec fit_spec()
    # rather than aborting the whole batch, matching the prior
    # behaviour of the non-lm leg.
    if (is.null(batch_fn)) {
      for (i in idx) out[i] <- list(fit_spec(df, outcome, specs[[i]]))
    } else {
      # `[<-` with list(...) preserves NULL slots so the result list
      # stays length(specs); `[[<-` with NULL would delete the slot
      # and desynchronise the caller's per-spec index.
      out[idx] <- batch_fn(df, outcome, specs[idx])
    }
  }
  out
}

# Highlighted-spec selection. Implements the just-cleared bias from
# Brodeur, Cook & Heyes (2020): prefer specs whose p-value falls in
# [0.040, 0.0499] - distinctly under the 0.05 line but visibly close.
# Break ties to land closest to 0.045. Among ties, take the highest R^2.
choose_highlight <- function(results) {
  results <- Filter(Negate(is.null), results)
  if (length(results) == 0L) return(NULL)
  ps <- vapply(results, function(r) r$p_value %||% NA_real_, numeric(1))
  r2 <- vapply(results, function(r) r$r_squared %||% NA_real_, numeric(1))

  in_strip <- !is.na(ps) & ps >= 0.040 & ps < 0.050
  if (any(in_strip)) {
    cand <- which(in_strip)
    dist <- abs(ps[cand] - 0.045)
    cand <- cand[order(dist, -r2[cand])]
    return(results[[cand[1]]])
  }
  # No just-cleared strip: take the smallest p with valid value.
  ord <- order(ps, na.last = TRUE)
  results[[ord[1]]]
}

Try the texanshootR package in your browser

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

texanshootR documentation built on May 30, 2026, 9:11 a.m.