Constrains Bradley–Terry–Luce object locations to linear functions of
observed object characteristics. The formulation applies to dichotomous
and ordered comparative judgements; ordered-response thresholds retain the
structure selected in thresholds.
Arguments
- data
A data frame with one comparison per row.
- predictors
Data frame with one row per object, an
objectcolumn, and the predictors named informula.- formula
One-sided explanatory formula, including selected interactions if required.
- object_a, object_b
Names of the columns holding the two objects compared.
- winner
Name of the column holding the winner of each row: its value must equal one of the two objects.
"tie"and"draw"mark ties. Ignored whenresponseis supplied.- response
Optional ordered response favouring
object_aoverobject_b: an ordered factor from least to greatest preference forobject_a, or integer scores0..m.- margin
Optional ordered margin-of-victory column, combined with
winnerto construct an orientation-invariant response.- judge
Optional name of a judge column; enables the judge fit table and clusters the sandwich standard errors by judge.
- count
Optional name of a column of replication counts (a row standing for several identical comparisons).
- order
Optional column giving each judge's comparison sequence; requires
judge. See Details. Incompatible withties = "half".- position
If
TRUE, estimate a first-presentation advantage, treatingobject_aas the first object in each comparison.- ties
How to treat ties in the dichotomous analysis:
"drop"(default, removed with a note),"half"(half a win each way, a common pragmatic device – flagged in the notes because the halves are not independent Bernoulli trials), or"error". With polytomous responses, code ties as a middle category instead.- thresholds
"free"(default) estimates every symmetric threshold;"pc"retains only the symmetric spread component.- maxit, tol
Newton-Raphson iteration cap and convergence tolerance.
Details
For objects \(a\) and \(b\),
$$\log\{P(a \succ b)/P(b \succ a)\}=\beta_a-\beta_b,\qquad
\beta_i=\mathbf z_i^{T}\boldsymbol\gamma.$$
The scale origin is fixed at mean object location zero. Numeric predictors
are continuous, unordered factors are categorical, and ordered factors use
successive contrasts between adjacent levels. Character predictors are
converted to unordered factors. Selected
interactions may be included in formula. A free calibration is
retained for explanatory_test(). Standard errors use the same
sandwich covariance as btl(); when judges are identified, coefficient
tests use the judge-clustered covariance and a \(t\) reference with
judge-cluster degrees of freedom. Holm adjustment covers the coefficient
family.
References
Bradley, R. A. and Terry, M. E. (1952). Rank analysis of incomplete block designs: I. The method of paired comparisons. Biometrika, 39, 324–345.
Fischer, G. H. (1973). The linear logistic test model as an instrument in educational research. Acta Psychologica, 37, 359–374.
Examples
set.seed(1)
q <- data.frame(object = LETTERS[1:6],
domain = rep(0:1, each = 3))
beta <- setNames(0.8 * q$domain, q$object)
pr <- t(combn(q$object, 2))
d <- data.frame(a = rep(pr[, 1], each = 20),
b = rep(pr[, 2], each = 20))
p <- plogis(beta[d$a] - beta[d$b])
d$winner <- ifelse(runif(nrow(d)) < p, d$a, d$b)
fit <- btl_explanatory(d, q, ~ domain, "a", "b", winner = "winner")
fit$object_coefficients
#> term estimate se t df p p_adj
#> domain 1.040 0.170 6.130 Inf < 0.001 < 0.001
explanatory_test(fit)
#> model parameters free_parameters r_squared r_squared_adj
#> Explanatory CJ 1 5 0.920 0.900
#> r2_basis chisq df p_naive chisq_kent p p_kent
#> object calibration 3.715 4 0.446 3.730 0.444 0.444