Learn R Programming

PublicationBiasBenchmark (version 0.1.3)

method.PET: PET (Precision-Effect Test) Method

Description

Implements the Precision-Effect Test for publication bias correction. PET regresses effect sizes against standard errors to test for and correct publication bias. The intercept represents the bias-corrected effect size estimate. See stanley2014meta;textualPublicationBiasBenchmark for details.

Usage

# S3 method for PET
method(method_name, data, settings = NULL)

Value

Data frame with PET results

Arguments

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)

References

Examples

Run this code
# 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 PET method
result <- run_method("PET", data)
print(result)

Run the code above in your browser using DataLab