auto-hypothesis-test

Solid

Automatically selects and runs the right statistical test for your data — t-test, ANOVA, chi-square, Mann-Whitney, or others — and provides plain-language interpretations of the results. Triggered when you ask about group comparisons, significance, p-values, hypothesis testing, or mention specific tests like t-test, ANOVA, or chi-square.

Testing & QA 4 stars 1 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
23
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# auto-hypothesis-test Automated statistical testing tool — automatically selects the appropriate hypothesis test based on your data characteristics (t-test / chi-square / ANOVA / Mann-Whitney, etc.) and outputs results with plain-language interpretations. ## Capabilities | Feature | Description | |---------|-------------| | Independent samples t-test | 2 groups + normal data, compare means | | Welch's t-test | 2 groups + normal but unequal variances | | Mann-Whitney U | 2 groups + non-normal data (nonparametric) | | One-way ANOVA | 3+ groups + normal data | | Kruskal-Wallis | 3+ groups + non-normal data (nonparametric) | | Chi-square independence test | Association between two categorical variables | | Paired t-test | Before/after comparison (normal) | | Wilcoxon signed-rank | Before/after comparison (nonparametric) | | Auto-selection | Automatically chooses based on group count, normality, and data type | | Plain-language interpretation | Every metric and conclusion explained in everyday language | ## Quick Start ```bash # Group comparison (auto-selects the test) python3 scripts/statistical_test_suite.py data.csv --group treatment --value score # Chi-square test (two categorical variables) python3 scripts/statistical_test_suite.py survey.csv --group gender --value preference # Paired test (before/after comparison) python3 scripts/statistical_test_suite.py experiment.csv --col1 pre_score --col2 post_score --paired # Force a specific test python3 scripts/statistical_t...

Details

Author
serejaris
Repository
serejaris/kimi-skills
Created
1 weeks ago
Last Updated
1 weeks ago
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Testing & QA Solid

auto-stat-test

自动执行统计检验,根据数据特征(组数、正态性、���对设计)智能选择 t 检验、卡方检验、ANOVA、Mann-Whitney U 等合适方法,并输出包含 p 值、效应量和通俗中文解读的完整报告。当用户需要进行假设检验、组间比较、显著性分析,或提及 t 检验、卡方、方差分析、p 值、配对检验、非参数检验等关键词时触发。

4 Updated 1 weeks ago
serejaris
AI & Automation Solid

statistical-analysis

Guided statistical analysis: test choice, assumption checks, effect sizes, power, APA reporting. Pick tests, verify assumptions, or format results for publication. Covers frequentist (t-test, ANOVA, chi-square, regression, correlation, survival, count, reliability) and Bayesian. Use statsmodels or pymc-bayesian-modeling to fit.

286 Updated 4 days ago
jaechang-hits
AI & Automation Solid

ab-test-analyzer

Designs and analyzes A/B tests end-to-end — frames a sharp hypothesis, computes required sample size and test duration, runs significance tests (two-proportion z-test, Welch's t-test, chi-square), reports confidence intervals and lift, and flags common pitfalls like peeking, multiple comparisons, and Simpson's paradox. Use this skill when the user mentions A/B testing, split testing, experiment design, conversion-rate experiments, statistical significance, p-values, sample size or power calculations, "did this experiment win", minimum detectable effect (MDE), or asks to interpret experiment results honestly. Includes a runnable stats script (scripts/abtest.py).

3 Updated today
JayRHa