| method.FMA | R Documentation |
Implements the publication bias-unadjusted fixed effects meta-analysis.
## S3 method for class 'FMA'
method(method_name, data, settings)
method_name |
Method name (automatically passed) |
data |
Data frame with yi (effect sizes) and sei (standard errors) |
settings |
List of method settings (see Details) |
The following settings are implemented
"default"T-distribution adjustment (test = "t")
and cluster robust standard errors with small-sample adjustment
(if converged, otherwise no small-sample adjustment or no cluster robust
standard errors) for fixed effects meta-analysis if
study_ids is specified in the data
Data frame with FMA 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 FMA method
result <- run_method("FMA", data)
print(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.