statistical-analysis

statistical-analysis is a skill for Claude Code, Codex from winstonkoh87/Athena-Public. It costs 37 tokens per session (1,448 once invoked), scanned A, original, MIT.

A structured workflow for analysing data with tools such as SPSS, R, or Python. It covers data checks, statistical assumptions, common tests, and clear reporting.

In plain words
What is it for?
It supports reliability checks, chi-square tests for categories, correlations, regression, assumption checks, and client-ready analysis of CSV, SPSS, or Excel data.
Why use it?
It helps prevent invalid conclusions caused by missing data, outliers, unsuitable sample sizes, or tests whose requirements were not checked.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It supports reliability checks, chi-square tests for categories, correlations, regression, assumption checks, and client-ready analysis of CSV, SPSS, or Excel data.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/winstonkoh87/athena-public/statistical-analysis
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add winstonkoh87/Athena-Public --skill statistical-analysis
Clone the repo
git clone --depth 1 https://github.com/winstonkoh87/Athena-Public

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for statistical-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/winstonkoh87/athena-public/statistical-analysis/github.svg)](https://agentmods.dev/skills/winstonkoh87/athena-public/statistical-analysis)
Your own site
<a href="https://agentmods.dev/skills/winstonkoh87/athena-public/statistical-analysis"><img src="https://agentmods.dev/badge/skills/winstonkoh87/athena-public/statistical-analysis/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for statistical-analysis

Your own site · 80×15
<a href="https://agentmods.dev/skills/winstonkoh87/athena-public/statistical-analysis"><img src="https://agentmods.dev/badge/skills/winstonkoh87/athena-public/statistical-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,448 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00037 $0.01448
Opus 5 $0.00018 $0.00724
Sonnet 5 $0.00007 $0.00290
Haiku 4.5 $0.00004 $0.00145

Measured 9d ago against content hash 11b58c2493ff, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

statistical-analysis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

examples/skills/research/statistical-analysis/SKILL.md · 127 lines

How it starts

The opening of the file, as written. The whole thing — 127 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Statistical Analysis Skill

Purpose: Structured pipeline for statistical analysis deliverables. Prevents assumption violations, missed effect sizes, and uninterpretable output. Origin: Created ahead of a client SPSS assignment. No protocol coverage existed for this domain.

The 5-Step Pipeline

Step 1: DATA AUDIT

  • Load dataset (CSV, SPSS .sav, Excel)
  • Profile: N, variable types (nominal/ordinal/interval/ratio), missing data %, outliers
  • Check for:
    • Missing data pattern (MCAR/MAR/MNAR) — Little's MCAR test if available
    • Outliers (z-score > 3 or IQR method)
    • Variable coding (reverse-coded items, string-to-numeric conversion)
    • Sample size adequacy per planned test (rule of thumb: 10–15 observations per predictor for regression)

Step 2: ASSUMPTION MATRIX

[!IMPORTANT] Every statistical test has assumptions. Violating them invalidates results. Check BEFORE running.

Test Family Assumptions Check Method
Reliability (Cronbach's α) Unidimensionality, interval/ratio data, ≥3 items per scale Factor analysis / item-total correlations
Chi-Square (χ²) Independence, expected frequency ≥ 5 in 80%+ cells, categorical variables Expected frequency table
Pearson Correlation Linearity, normality (both vars), no significant outliers, interval/ratio Scatter plot, Shapiro-Wilk
Spearman Correlation Monotonic relationship, ordinal or non-normal interval Scatter plot (monotonic check)
Multiple Regression Linearity, independence (Durbin-Watson), homoscedasticity, normality of residuals, no multicollinearity (VIF < 10) Residual plots, VIF table, Durbin-Watson
Independent t-test Normality, homogeneity of variance (Levene's), interval/ratio DV Shapiro-Wilk, Levene's
One-way ANOVA Normality, homogeneity (Levene's), independence, interval/ratio DV Same as t-test + post-hoc if significant

Step 3: TEST EXECUTION

For each test in the scope:

  1. State the hypothesis (H₀ and H₁) explicitly
  2. Run the test — output test statistic, df, p-value, effect size
  3. Effect size (mandatory — p-value alone is insufficient):
    • Cohen's d (t-test)
    • η² or partial η² (ANOVA)
    • r or R² (correlation/regression)
    • Cramér's V (chi-square)
    • Cronbach's α (reliability — this IS the effect)
  4. Decision: Reject/Fail to reject H₀ at α = 0.05 (unless specified otherwise)

Read the full file on GitHub · 127 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 127 lines · 37 tokens per session scan A 11b58c2493ff

Subscribe to this mod's changes

statistical-analysis is a skill published in the GitHub repository winstonkoh87/Athena-Public (585 stars, last pushed yesterday), licensed MIT. It adds 37 tokens to every session and 1,448 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

makefile-generation

Generates Makefiles with testing, linting, formatting, and automation targets. Use when starting a project or standardizing build automation.

athola/claude-night-market · 31 tokens

python-testing

A Python testing guide covering pytest, test coverage, and test-driven development (TDD), a method of writing a failing test before the code that makes it pass.

loulanyue/awesome-claude-notes · 40 tokens

python-patterns

A guide to common Python coding patterns, style rules, type hints, and practices for writing code that is readable, robust, efficient, and easier to maintain.

loulanyue/awesome-claude-notes · 53 tokens

plankton-code-quality

Write-time code quality enforcement using Plankton — auto-formatting, linting, and Claude-powered fixes on every file edit via hooks.

loulanyue/awesome-claude-notes · 34 tokens

cirq

Google quantum computing framework. Use when targeting Google Quantum AI hardware, designing noise-aware circuits, or running quantum characterization experiments. Best for Google hardware, noise modeling, and low-level circuit design. For IBM hardware use qiskit; for quantum ML with autodiff use pennylane; for…

LeonChaoX/qinyan-academic-skills · 67 tokens

modal

Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.

LeonChaoX/qinyan-academic-skills · 46 tokens