Agent skill · Data & Analytics

tooluniverse-statistical-modeling

Perform statistical modeling and regression analysis on biomedical datasets. Supports linear regression, logistic regression (binary/ordinal/multinomial), mixed-effects models, Cox proportional hazards survival analysis, Kaplan-Meier estimation, and comprehensive model diagnostics. Extracts odds ratios, hazard ratios, confidence intervals, p-values, and effect sizes. Designed to solve BixBench statistical reasoning questions involving clinical/experimental data. Use when asked to fit regression models, compute odds ratios, perform survival analysis, run statistical tests, or interpret model co

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill tooluniverse-statistical-modeling --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 15
SKILL.md size: 19 KB
Bundled scripts: yes
Path: skills/openclaw/tooluniverse-statistical-modeling/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Statistical Modeling for Biomedical Data Analysis Comprehensive statistical modeling skill for fitting regression models, survival models, and mixed-effects models to biomedical data. Produces publication-quality statistical summaries with odds ratios, hazard ratios, confidence intervals, and p-values. ## Features ✅ **Linear Regression** - OLS for continuous outcomes with diagnostic tests ✅ **Logistic Regression** - Binary, ordinal, and multinomial models with odds ratios ✅ **Survival Analysis** - Cox proportional hazards and Kaplan-Meier curves ✅ **Mixed-Effects Models** - LMM/GLMM for hierarchical/repeated measures data ✅ **ANOVA** - One-way/two-way ANOVA, per-feature ANOVA for omics data ✅ **Model Diagnostics** - Assumption checking, fit statistics, residual analysis ✅ **Statistical Tests** - t-tests, chi-square, Mann-Whitney, Kruskal-Wallis, etc. ## Quick Start ### Binary Logistic Regression ```python import statsmodels.formula.api as smf import numpy as np # Fit logistic regression model = smf.logit('disease ~ exposure + age + sex', data=df).fit(disp=0) # Extract odds ratios odds_ratios = np.exp(model.params) conf_int = np.exp(model.conf_int()) print(f"Odds Ratio for exposur

What's inside
Steps it walks through
  1. Features
  2. Quick Start
  3. Binary Logistic Regression
  4. Cox Proportional Hazards
  5. Model Selection Decision Tree
  6. When to Use
  7. Workflow
  8. Phase 0: Data Validation
  9. Phase 1: Model Fitting
  10. Phase 2: Model Diagnostics
  11. Phase 3: Interpretation
  12. Common BixBench Patterns
  13. Pattern 1: Odds Ratio from Ordinal Regression
  14. Pattern 2: Percentage Reduction in Odds
Ships with 14 files
  • EXAMPLES.md
  • QUICK_START.md
  • README.md
  • REDESIGN_SUMMARY.md
  • TOOLS_REFERENCE.md
  • references/bixbench_patterns.md
  • references/cox_regression.md
  • references/linear_models.md
  • references/logistic_regression.md
  • references/ordinal_logistic.md
  • references/troubleshooting.md
  • scripts/format_statistical_output.py
  • scripts/model_diagnostics.py
  • test_skill.py
More from awesome-bio-agent-skills
All skills →
About this skill
What does the tooluniverse-statistical-modeling skill do?

Perform statistical modeling and regression analysis on biomedical datasets. Supports linear regression, logistic regression (binary/ordinal/multinomial), mixed-effects models, Cox proportional hazards survival analysis, Kaplan-Meier estimation, and comprehensive model diagnostics. Extracts odds ratios, hazard ratios, confidence intervals, p-values, and effect sizes. Designed to solve BixBench statistical reasoning questions involving clinical/experimental data. Use when asked to fit regression models, compute odds ratios, perform survival analysis, run statistical tests, or interpret model co

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill tooluniverse-statistical-modeling --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From BioTender-max/awesome-bio-agent-skills, a repository with 135 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going