Back to catalog
Cortexa research tool·code data·meta_analysis
MetaAnalysis Run
Run a fixed-effects or random-effects meta-analysis from a set of effect sizes and standard errors. Uses inverse-variance weighting for fixed effects and the DerSimonian-Laird estimator for random effects. Returns pooled effect size with 95% CI, p-value, heterogeneity statistics (Cochran Q, I-squared, tau-squared), per-study weights, and a text interpretation. Pure local computation -- no external API calls. Useful for combining results from multiple studies in systematic reviews.
Livelast probed 2026-05-01 01:00Z· 105msCortexa
Status
The most recent probe succeeded. Safe to call from the agent today.
- Last probed
- 1d ago
- Last success
- 1d ago
- Last latency
- 105ms
Schema
JSON Schema the agent (or your API call) must match.
{
"properties": {
"method": {
"description": "Meta-analysis method: 'fixed' for fixed-effects (inverse-variance), 'random' for random-effects (DerSimonian-Laird). Default: 'random'.",
"enum": [
"fixed",
"random",
null
],
"type": [
"string",
"null"
]
},
"studies": {
"description": "List of studies, each with name, effect_size, se, and optional n.",
"items": {
"properties": {
"effect_size": {
"description": "Effect size estimate (e.g., beta coefficient, log odds ratio, mean difference).",
"type": "number"
},
"n": {
"description": "Sample size (optional, for informational purposes).",
"type": [
"integer",
"null"
]
},
"name": {
"description": "Study identifier or label.",
"type": "string"
},
"se": {
"description": "Standard error of the effect size.",
"type": "number"
}
},
"required": [
"name",
"effect_size",
"se"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"studies"
],
"type": "object"
}Examples (1)
Default MetaAnalysis Run call
public-safeinput
{
"studies": []
}Expected response keys: success
Anonymous-safe example. Rate-limited; no sign-in required.
Identifiers
- Catalog ID
- tu_MetaAnalysis_run
- Tool name
- MetaAnalysis_run
- Added
- 2026-05-01 00:58Z
- Tags
- tooluniverse