| method.PEESE | R Documentation |
Implements the Precision-Effect Estimate with Standard Errors method for publication bias correction. PEESE regresses effect sizes against standard errors^2 to correct for publication bias. The intercept represents the bias-corrected effect size estimate. See \insertCitestanley2014meta;textualPublicationBiasBenchmark for details.
## S3 method for class 'PEESE'
method(method_name, data, settings = NULL)
method_name |
Method name (automatically passed) |
data |
Data frame with yi (effect sizes) and sei (standard errors) |
settings |
List of method settings (no settings version are implemented) |
Data frame with PEESE results
František Bartoš f.bartos96@gmail.com
# Generate some example data
data <- data.frame(
yi = c(0.2, 0.3, 0.1, 0.4, 0.25),
sei = c(0.1, 0.15, 0.08, 0.12, 0.09)
)
# Apply PEESE method
result <- run_method("PEESE", data)
print(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.