AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Network Meta Analysis

skill-choxos-biostatagent-network-meta-analysis · by choxos

Network meta-analysis in R, including network setup, consistency, treatment rankings, and league tables.

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-choxos-biostatagent-network-meta-analysis

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-choxos-biostatagent-network-meta-analysis)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Network Meta Analysis? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Network Meta-Analysis in R

Overview

Network meta-analysis (NMA) methods for comparing multiple treatments simultaneously using direct and indirect evidence. Covers network structure assessment, frequentist and Bayesian NMA approaches, consistency evaluation, treatment rankings, and visualization techniques.

Network Structure and Data Preparation

Pairwise Data Format

library(netmeta)

# Standard pairwise format for contrast-based NMA
pairwise_data = 2.0)
# net_reg 
    mutate(
      Fixed = paste0(round(Effect_Fixed, 2), " (",
                    round(CI_Lower_Fixed, 2), ", ",
                    round(CI_Upper_Fixed, 2), ")"),
      Random = paste0(round(Effect_Random, 2), " (",
                     round(CI_Lower_Random, 2), ", ",
                     round(CI_Upper_Random, 2), ")")
    ) |>
    select(Comparison, Fixed, Random)

  return(summary_df)
}

Key Packages Summary

| Package | Purpose | |---------|---------| | netmeta | Frequentist NMA (contrast-based) | | gemtc | Bayesian NMA with JAGS | | multinma | Bayesian NMA with Stan | | bnma | Bayesian NMA | | pcnetmeta | Patient-centered NMA | | NMAoutlier | Outlier detection in NMA | | nmathresh | Decision thresholds for NMA |

Best Practices

  1. Network geometry: Check connectivity before analysis
  2. Transitivity: Assess similarity of study populations across comparisons
  3. Consistency: Always assess local and global inconsistency
  4. Heterogeneity: Report tau, I², and consider prediction intervals
  5. Ranking: Present uncertainty (CrI for ranks, rankograms)
  6. Sensitivity: Conduct analyses excluding high RoB studies
  7. Reporting: Follow PRISMA-NMA extension guidelines
  8. Model selection: Compare fixed vs random effects, check model fit

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.