method.WILS: Weighted and Iterated Least Squares (WILS) Method
Description
Implements the weighted and iterated least squares (WILS) method for publication
bias correction in meta-analysis. The method is based on the idea of using excess statistical
significance (ESS) to identify how many underpowered studies should be removed to
reduce publication selection bias. See
stanley2024harnessing;textualPublicationBiasBenchmark for details.
Usage
# S3 method for WILS
method(method_name, data, settings = NULL)
Value
Data frame with WILS results
Arguments
method_name
Method name (automatically passed)
data
Data frame with yi (effect sizes) and sei (standard errors)
settings
List of method settings (see Details)
Details
The WILS method has two implementation versions based on Stanley & Doucouliagos (2024).
The following settings are implemented
"default"
The simulation version (default) uses residuals from the
t ~ Precision regression for the first iteration, then switches to individual
excess statistical significance (ESS) for subsequent iterations.
"example"
The example version consistently uses residuals from the
t ~ Precision regression to identify studies to remove across all iterations.