diff --git a/data-analysis/statistical-analyst/SKILL.md b/engineering/statistical-analyst/SKILL.md similarity index 93% rename from data-analysis/statistical-analyst/SKILL.md rename to engineering/statistical-analyst/SKILL.md index 433f85d..1437deb 100644 --- a/data-analysis/statistical-analyst/SKILL.md +++ b/engineering/statistical-analyst/SKILL.md @@ -227,16 +227,16 @@ Structure all results as: | Skill | Use When | |---|---| -| `marketing/ab-test-setup` | Designing the experiment before it runs — randomization, instrumentation, holdout | -| `data-analysis/data-quality-auditor` | Verifying input data integrity before running any statistical test | -| `product/experiment-designer` | Structuring the hypothesis, success metrics, and guardrail metrics | -| `product/product-analytics` | Analyzing product funnel and retention metrics | +| `marketing-skill/ab-test-setup` | Designing the experiment before it runs — randomization, instrumentation, holdout | +| `engineering/data-quality-auditor` | Verifying input data integrity before running any statistical test | +| `product-team/experiment-designer` | Structuring the hypothesis, success metrics, and guardrail metrics | +| `product-team/product-analytics` | Analyzing product funnel and retention metrics | | `finance/saas-metrics-coach` | Interpreting SaaS KPIs that may feed into experiments (ARR, churn, LTV) | -| `marketing/campaign-analytics` | Statistical analysis of marketing campaign performance | +| `marketing-skill/campaign-analytics` | Statistical analysis of marketing campaign performance | **When NOT to use this skill:** -- You need to design or instrument the experiment — use `marketing/ab-test-setup` or `product/experiment-designer` -- You need to clean or validate the input data — use `data-analysis/data-quality-auditor` first +- You need to design or instrument the experiment — use `marketing-skill/ab-test-setup` or `product-team/experiment-designer` +- You need to clean or validate the input data — use `engineering/data-quality-auditor` first - You need Bayesian inference or multi-armed bandit analysis — flag that frequentist tests may not be appropriate --- diff --git a/data-analysis/statistical-analyst/references/statistical-testing-concepts.md b/engineering/statistical-analyst/references/statistical-testing-concepts.md similarity index 100% rename from data-analysis/statistical-analyst/references/statistical-testing-concepts.md rename to engineering/statistical-analyst/references/statistical-testing-concepts.md diff --git a/data-analysis/statistical-analyst/scripts/confidence_interval.py b/engineering/statistical-analyst/scripts/confidence_interval.py similarity index 100% rename from data-analysis/statistical-analyst/scripts/confidence_interval.py rename to engineering/statistical-analyst/scripts/confidence_interval.py diff --git a/data-analysis/statistical-analyst/scripts/hypothesis_tester.py b/engineering/statistical-analyst/scripts/hypothesis_tester.py similarity index 100% rename from data-analysis/statistical-analyst/scripts/hypothesis_tester.py rename to engineering/statistical-analyst/scripts/hypothesis_tester.py diff --git a/data-analysis/statistical-analyst/scripts/sample_size_calculator.py b/engineering/statistical-analyst/scripts/sample_size_calculator.py similarity index 99% rename from data-analysis/statistical-analyst/scripts/sample_size_calculator.py rename to engineering/statistical-analyst/scripts/sample_size_calculator.py index f0e6e19..1fc6396 100644 --- a/data-analysis/statistical-analyst/scripts/sample_size_calculator.py +++ b/engineering/statistical-analyst/scripts/sample_size_calculator.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +from __future__ import annotations """ sample_size_calculator.py — Required sample size per variant for A/B experiments.