Statistical Modeling logo

Statistical Modeling

Community
Tibsfox
statistical-modeling

Regression analysis, ANOVA, generalized linear models, Bayesian methods, and model selection. Covers the full modeling workflow from problem formulation through diagnostics -- linear regression, logistic regression, Poisson regression, mixed-effects models, prior specification, posterior inference, AIC/BIC comparison, cross-validation for model selection, and assumption checking. Use when fitting models, testing hypotheses, or selecting among competing statistical explanations.

Overview

PublisherTibsfox
Repositorygsd-skill-creator
Skill namestatistical-modeling
Stars
70
Forks
9
Bundled files
Instructions only
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by Tibsfox on GitHub. Read the source before you install it.

Installation

Install the Statistical Modeling AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/Tibsfox/gsd-skill-creator.git /tmp/gsd-skill-creator
mkdir -p .claude/skills
cp -r /tmp/gsd-skill-creator/examples/skills/data-science/statistical-modeling .claude/skills/statistical-modeling
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Statistical Modeling in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Statistical Modeling on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Statistical Modeling is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Statistical Modeling

Statistical modeling is the practice of fitting mathematical structures to data in order to quantify relationships, test hypotheses, and make predictions. Unlike machine learning, which optimizes prediction, statistical modeling privileges interpretability and inference -- understanding why variables relate, not just that they do. Leo Breiman's "two cultures" paper (2001) crystallized this distinction. This skill covers the inferential tradition while acknowledging where the two cultures overlap.

Agent affinity: tukey (EDA and diagnostics), fisher (experimental design and ANOVA), breiman (model comparison)

Concept IDs: data-hypothesis-testing, data-confidence-intervals, data-correlation, data-normal-distribution

The Modeling Workflow

StageGoalKey operations
1. FormulationDefine the question as a modelSpecify response variable, predictors, functional form
2. ExplorationUnderstand data structureScatterplots, correlation matrices, distribution checks
3. FittingEstimate parametersOLS, MLE, MCMC, IRLS depending on model class
4. DiagnosticsCheck assumptionsResidual plots, Q-Q plots, leverage, VIF
5. InferenceDraw conclusionsConfidence intervals, hypothesis tests, effect sizes
6. SelectionCompare modelsAIC, BIC, cross-validation, likelihood ratio tests
7. CommunicationReport resultsEffect estimates with uncertainty, not just p-values

Linear Regression

The Model

y = beta_0 + beta_1 * x_1 + beta_2 * x_2 + ... + beta_p * x_p + epsilon

where epsilon ~ N(0, sigma^2) independently. The betas are estimated by ordinary least squares (OLS), minimizing the sum of squared residuals.

Assumptions (LINE)

AssumptionCheckViolation consequence
LinearityResidual vs. fitted plot -- no patternBiased estimates, meaningless coefficients
IndependenceStudy design, Durbin-Watson testUnderestimated standard errors, inflated significance
Normality of residualsQ-Q plot, Shapiro-Wilk testUnreliable confidence intervals and p-values (less critical for large n by CLT)
Equal variance (homoscedasticity)Scale-location plot, Breusch-Pagan testInefficient estimates, unreliable standard errors

Interpretation

  • beta_j: The expected change in y for a one-unit increase in x_j, holding all other predictors constant.
  • R-squared: Proportion of variance in y explained by the model. Not a measure of model quality alone -- a high R-squared with violated assumptions is meaningless.
  • Adjusted R-squared: Penalizes for number of predictors. Always use this for model comparison.

Multicollinearity

When predictors are highly correlated, coefficient estimates become unstable. Variance Inflation Factor (VIF) quantifies this: VIF > 5-10 indicates problematic collinearity. Remedies: drop a predictor, combine predictors via PCA, or use regularization (ridge regression).

Logistic Regression

The Model

For binary outcome y in {0, 1}:

log(p / (1 - p)) = beta_0 + beta_1 * x_1 + ... + beta_p * x_p

where p = P(y = 1 | x). The left side is the log-odds (logit). Parameters are estimated by maximum likelihood.

Interpretation

  • exp(beta_j): The odds ratio for a one-unit increase in x_j, holding other predictors constant. An odds ratio of 1.5 means 50% higher odds of the outcome.
  • Predicted probability: p = 1 / (1 + exp(-(beta_0 + beta_1 * x_1 + ...))). The sigmoid function maps the linear predictor to [0, 1].
  • No R-squared analog that works well. Use pseudo-R-squared measures (McFadden, Nagelkerke) with caution. Prefer ROC-AUC or calibration plots for assessing fit.

Assumptions

  • Observations are independent.
  • The log-odds are a linear function of the predictors (check with partial residual plots).
  • No perfect multicollinearity.
  • No assumption of normality or equal variance -- this is not linear regression with a binary outcome.

Generalized Linear Models (GLMs)

Logistic regression is one instance of the GLM framework. The general structure:

ComponentRole
Random componentDistribution of y (Normal, Binomial, Poisson, Gamma, ...)
Systematic componentLinear predictor eta = X * beta
Link functiong(mu) = eta, connecting the mean to the linear predictor

Common GLMs

Response typeDistributionLinkModel name
ContinuousNormalIdentityLinear regression
BinaryBinomialLogitLogistic regression
CountPoissonLogPoisson regression
Count (overdispersed)Negative binomialLogNegative binomial regression
Positive continuousGammaLog or inverseGamma regression
Proportion (not 0/1)BetaLogitBeta regression

Poisson Regression

For count data: log(mu) = beta_0 + beta_1 * x_1 + ... Assumes the mean equals the variance (equidispersion). When variance > mean (overdispersion), use negative binomial or quasi-Poisson. Always check for overdispersion.

Analysis of Variance (ANOVA)

Purpose

ANOVA tests whether group means differ. It is a special case of linear regression where all predictors are categorical.

One-Way ANOVA

  • Null hypothesis: mu_1 = mu_2 = ... = mu_k (all group means are equal).
  • Test statistic: F = (between-group variance) / (within-group variance).
  • Assumptions: Independence, normality within groups, equal variances (Levene's test).
  • Post-hoc: If the F-test rejects, pairwise comparisons identify which groups differ. Use Tukey's HSD or Bonferroni correction to control family-wise error rate.

Two-Way ANOVA

Adds a second factor and their interaction. The interaction term tests whether the effect of one factor depends on the level of the other. Always plot the interaction (mean response by factor A, colored by factor B) before interpreting the F-test.

ANOVA as Regression

One-way ANOVA with k groups is equivalent to linear regression with k-1 dummy variables. The F-test in ANOVA is the same as the overall F-test in regression. Understanding this equivalence clarifies that ANOVA is not a separate method -- it is regression with categorical predictors.

Bayesian Methods

The Framework

Bayesian inference updates prior beliefs with data to produce posterior beliefs:

posterior is proportional to likelihood times prior

P(theta | data) proportional to P(data | theta) * P(theta)

Prior Specification

Prior typeWhen to useExample
InformativeStrong domain knowledge"The effect is between 0.5 and 1.5 based on prior studies"
Weakly informativeSome domain knowledge, want to regularizeNormal(0, 10) for regression coefficients -- centered at zero, wide but not flat
Non-informativeWant the data to dominateUniform or Jeffreys prior. Rarely truly "non-informative" -- all priors carry assumptions

Posterior Inference

  • Credible interval: The 95% credible interval contains the parameter with 95% probability. This is what people think frequentist confidence intervals mean (but they don't).
  • Posterior predictive checks: Simulate data from the posterior and compare to observed data. If the model is good, simulated data should look like real data.
  • Model comparison: Bayes factors, WAIC, LOO-CV. These naturally penalize complexity without needing a separate penalty term.

Practical Bayesian Workflow

  1. Specify the model (likelihood + priors).
  2. Fit using MCMC (Stan, PyMC, JAGS) or variational inference.
  3. Check convergence: R-hat < 1.01, effective sample size > 400, no divergent transitions.
  4. Posterior predictive checks.
  5. Report posterior summaries with credible intervals.

Model Selection

Information Criteria

CriterionFormulaInterpretation
AIC-2 * log-likelihood + 2kEstimates out-of-sample prediction error. Lower is better.
BIC-2 * log-likelihood + k * log(n)Penalizes complexity more heavily than AIC. Consistent (selects true model as n -> infinity).
WAICBayesian analog of AICUses the full posterior, not point estimates. Preferred for Bayesian models.

AIC favors prediction accuracy; BIC favors parsimony. When they disagree, consider the goal: prediction -> AIC, explanation -> BIC.

Cross-Validation

  • k-fold CV: Split data into k folds, fit on k-1, evaluate on the held-out fold, rotate. Average performance across folds.
  • Leave-one-out (LOO): k = n. Expensive but lowest variance. Approximated efficiently by PSIS-LOO for Bayesian models.
  • Repeated CV: Run k-fold multiple times with different splits to reduce variance in the estimate.

Nested vs. Non-Nested Models

  • Nested models (one is a special case of the other): Use likelihood ratio test, F-test, or compare AIC/BIC.
  • Non-nested models (different functional forms): Use AIC/BIC or cross-validation. Likelihood ratio tests are not valid.

Diagnostics Checklist

CheckToolWhat to look for
LinearityResidual vs. fitted plotNo systematic pattern
NormalityQ-Q plotPoints on the diagonal line
HomoscedasticityScale-location plotHorizontal band, no funnel
IndependenceDurbin-Watson, ACF plotDW near 2, no significant autocorrelation
Influential pointsCook's distanceNo points with Cook's D > 4/n
MulticollinearityVIFAll VIF < 5
Overdispersion (GLM)Residual deviance / dfRatio near 1

Common Mistakes

MistakeWhy it failsFix
Interpreting p > 0.05 as "no effect"Absence of evidence is not evidence of absenceReport effect size with confidence interval
Stepwise variable selectionInflates Type I error, unstable resultsUse AIC/BIC or cross-validation
Ignoring multicollinearityUnstable coefficients, misleading significanceCheck VIF, consider combining or dropping predictors
Extrapolating beyond data rangeModel has no support outside observed x-rangeState the range of validity explicitly
Confusing correlation with causationRegression coefficients are associations unless the design is experimentalUse causal language only with randomized experiments or strong causal inference methods
Reporting R-squared without diagnosticsHigh R-squared with violated assumptions is meaninglessAlways check assumptions before interpreting fit statistics

Cross-References

  • tukey agent: Exploratory data analysis that precedes and informs model specification. Tukey's box plots and stem-and-leaf plots reveal the structure that guides model choice.
  • fisher agent: Experimental design that produces data suitable for causal inference via ANOVA and regression.
  • breiman agent: Machine learning models as alternatives when prediction dominates inference.
  • data-wrangling skill: Data cleaning and transformation that produces analysis-ready inputs for modeling.
  • experimental-design-ds skill: A/B testing and randomization that make causal claims from regression valid.
  • machine-learning-foundations skill: The prediction-focused counterpart to this inference-focused skill.

References

  • Breiman, L. (2001). "Statistical Modeling: The Two Cultures." Statistical Science, 16(3), 199-231.
  • Gelman, A., Carlin, J. B., Stern, H. S., Dunson, D. B., Vehtari, A., & Rubin, D. B. (2013). Bayesian Data Analysis. 3rd edition. CRC Press.
  • Kutner, M. H., Nachtsheim, C. J., Neter, J., & Li, W. (2005). Applied Linear Statistical Models. 5th edition. McGraw-Hill.
  • McCullagh, P. & Nelder, J. A. (1989). Generalized Linear Models. 2nd edition. Chapman & Hall.
  • McElreath, R. (2020). Statistical Rethinking. 2nd edition. CRC Press.

Frequently asked questions

What does the Statistical Modeling AI skill do?

Regression analysis, ANOVA, generalized linear models, Bayesian methods, and model selection. Covers the full modeling workflow from problem formulation through diagnostics -- linear regression, logistic regression, Poisson regression, mixed-effects models, prior specification, posterior inference, AIC/BIC comparison, cross-validation for model selection, and assumption checking. Use when fitting models, testing hypotheses, or selecting among competing statistical explanations.

Why use Statistical Modeling on TypingMind?

Because you install it once and use it with any model. Statistical Modeling is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Statistical Modeling in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Tibsfox/gsd-skill-creator/tree/main/examples/skills/data-science/statistical-modeling. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Statistical Modeling?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Statistical Modeling?

As many as you like. As long as a model supports skills, you can use Statistical Modeling with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Statistical Modeling AI skill free?

It is published on GitHub by Tibsfox. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇