Claude Skill

ab-test-analyzer

Statistical significance calculator for A/B test results with sample size requirements, segment breakdowns, and hypothesis generation. Use when feeding test results, checking statistical significance, calculating sample sizes, analyzing experiment outcomes, or generating next tes

LLM Mart · 0 points · 0 views 16 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download irinabuht12-oss-marketing-skills-skills_ab-test-analyzer-7ce4a6e.zip · 2 KB
Part of irinabuht12-oss/marketing-skills — 48 skills

Install

skills CLI npx skills add https://github.com/irinabuht12-oss/marketing-skills/tree/main/skills/ab-test-analyzer
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install irinabuht12-oss-marketing-skills@llmmart
Git git clone https://github.com/irinabuht12-oss/marketing-skills.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole irinabuht12-oss/marketing-skills collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

A/B Test Analyzer

Evaluate A/B test results with statistical rigor and generate actionable next steps.

Process

  1. Collect test data - Variations, sample sizes, conversions, time period
  2. Check validity - Runtime, sample size, peeking issues
  3. Calculate significance - Z-score, p-value, confidence interval
  4. Segment analysis - Device, source, new vs returning
  5. Interpret results - Statistical vs practical significance
  6. Generate hypotheses - "Why it worked" and next test ideas

Sample Size Calculator

n = 2 × (Zα/2 + Zβ)² × p(1-p) / δ²

Where:
- n = sample size per variation
- Zα/2 = 1.96 (95% confidence) or 2.58 (99%)
- Zβ = 0.84 (80% power) or 1.28 (90%)
- p = baseline conversion rate
- δ = minimum detectable effect (absolute)

Quick Reference (95% confidence, 80% power):

Baseline CR 10% Relative MDE 20% Relative MDE
2% 78,000/var 19,500/var
5% 30,000/var 7,500/var
10% 14,300/var 3,600/var

Significance Calculation

Z-score = (pB - pA) / √(SE²_A + SE²_B)
SE = √(p × (1-p) / n)

If |Z| > 1.96 → Significant at 95%
If |Z| > 2.58 → Significant at 99%

Validity Checklist

  • Ran for minimum 14 days (day-of-week effects)
  • Met required sample size before concluding
  • No "peeking" at results during test (inflates false positives to 40%+)
  • Traffic split was random and consistent
  • No external factors (holidays, outages, campaigns)

Bayesian vs Frequentist

Use Case Approach
Large samples (>10K), yes/no decision Frequentist
Continuous monitoring, early stopping Bayesian
Regulatory/legal requirements Frequentist
Want probability statements Bayesian

Output Format

## A/B Test Analysis

### Test Summary
- **Test Name**: [Name]
- **Hypothesis**: [What you expected]
- **Runtime**: [X days]
- **Sample Size**: Control [n] / Variant [n]

### Results
| Metric | Control | Variant | Lift | Significant? |
|--------|---------|---------|------|--------------|
| Conversion Rate | X% | Y% | +Z% | ✅/❌ |

### Statistical Details
- Z-score: [X]
- P-value: [X]
- Confidence Interval: [X% to Y%]
- Power achieved: [X]%

### Validity Assessment
- ✅/❌ Minimum runtime met
- ✅/❌ Sample size requirement met
- ✅/❌ No external confounds identified

### Segment Breakdown
| Segment | Control CR | Variant CR | Lift | Notes |
|---------|-----------|------------|------|-------|
| Mobile | | | | |
| Desktop | | | | |

### Interpretation
[Statistical significance vs practical significance discussion]

### "Why It Worked" Hypotheses
1. [Hypothesis about mechanism]
2. [Alternative explanation]

### Next Test Ideas
1. [Follow-up test based on learnings]
2. [Adjacent hypothesis to explore]

### Confidence Level: [HIGH/MEDIUM/LOW]

Example

Input: "Tested new headline. Control: 10,000 visitors, 250 conversions. Variant: 10,000 visitors, 300 conversions. Ran for 7 days."

Output:

## A/B Test Analysis

### Test Summary
- **Hypothesis**: New headline increases conversions
- **Runtime**: 7 days ⚠️
- **Sample Size**: Control 10,000 / Variant 10,000

### Results
| Metric | Control | Variant | Lift | Significant? |
|--------|---------|---------|------|--------------|
| Conversion Rate | 2.5% | 3.0% | +20% | ✅ Yes (95%) |

### Statistical Details
- Z-score: 2.28
- P-value: 0.023
- Confidence Interval: +2.3% to +37.7%
- Power achieved: 62% ⚠️

### Validity Assessment
- ❌ Minimum runtime NOT met (7 days < 14 days recommended)
- ⚠️ Sample size marginal for 20% MDE
- ❓ Cannot assess external confounds without more context

### Interpretation
Result is **statistically significant** but validity concerns exist:
1. 7-day runtime may miss day-of-week patterns
2. Wide confidence interval (+2% to +38%) indicates uncertainty
3. Recommend extending test 7 more days to confirm

### "Why It Worked" Hypotheses
1. New headline more clearly communicates value proposition
2. Specificity/numbers in headline increased credibility

### Next Test Ideas
1. Test headline variations that emphasize the winning element
2. Apply same messaging pattern to subheadline

### Confidence Level: MEDIUM
Statistical significance achieved, but short runtime reduces confidence.

Guidelines

  • Never declare a winner without checking validity
  • Distinguish statistical significance from practical significance
  • If test ran <7 days, always recommend extending
  • If sample size insufficient, calculate required runtime to reach it
  • Ask for segment data if not provided - results often differ by device/source

Data access (Ryze MCP)

This skill works best with live account data. Connect the free Ryze MCP once and Claude reads your Google Ads, Meta Ads, GA4 and Search Console directly:

  • claude.ai / Claude Desktop: Settings → Connectors → Add custom connector → https://connector.get-ryze.ai/mcp
  • Claude Code: claude mcp add ryze --transport http https://connector.get-ryze.ai/mcp
  • Cursor: Settings → MCP → add the same URL

Setup guide: https://www.get-ryze.ai/how-to-connect-claude-to-google-meta-ads-mcp

Files (marketing-skills)
  • SKILL.md 5.5 KB
    ---
    name: ab-test-analyzer
    description: Statistical significance calculator for A/B test results with sample size requirements, segment breakdowns, and hypothesis generation. Use when feeding test results, checking statistical significance, calculating sample sizes, analyzing experiment outcomes, or generating next test ideas based on results. Platform: Google and Meta.
    metadata:
      platform: Google and Meta
    ---
    
    # A/B Test Analyzer
    
    Evaluate A/B test results with statistical rigor and generate actionable next steps.
    
    ## Process
    
    1. **Collect test data** - Variations, sample sizes, conversions, time period
    2. **Check validity** - Runtime, sample size, peeking issues
    3. **Calculate significance** - Z-score, p-value, confidence interval
    4. **Segment analysis** - Device, source, new vs returning
    5. **Interpret results** - Statistical vs practical significance
    6. **Generate hypotheses** - "Why it worked" and next test ideas
    
    ## Sample Size Calculator
    
    ```
    n = 2 × (Zα/2 + Zβ)² × p(1-p) / δ²
    
    Where:
    - n = sample size per variation
    - Zα/2 = 1.96 (95% confidence) or 2.58 (99%)
    - Zβ = 0.84 (80% power) or 1.28 (90%)
    - p = baseline conversion rate
    - δ = minimum detectable effect (absolute)
    ```
    
    **Quick Reference (95% confidence, 80% power)**:
    | Baseline CR | 10% Relative MDE | 20% Relative MDE |
    |-------------|------------------|------------------|
    | 2% | 78,000/var | 19,500/var |
    | 5% | 30,000/var | 7,500/var |
    | 10% | 14,300/var | 3,600/var |
    
    ## Significance Calculation
    
    ```
    Z-score = (pB - pA) / √(SE²_A + SE²_B)
    SE = √(p × (1-p) / n)
    
    If |Z| > 1.96 → Significant at 95%
    If |Z| > 2.58 → Significant at 99%
    ```
    
    ## Validity Checklist
    
    - [ ] Ran for minimum 14 days (day-of-week effects)
    - [ ] Met required sample size before concluding
    - [ ] No "peeking" at results during test (inflates false positives to 40%+)
    - [ ] Traffic split was random and consistent
    - [ ] No external factors (holidays, outages, campaigns)
    
    ## Bayesian vs Frequentist
    
    | Use Case | Approach |
    |----------|----------|
    | Large samples (>10K), yes/no decision | Frequentist |
    | Continuous monitoring, early stopping | Bayesian |
    | Regulatory/legal requirements | Frequentist |
    | Want probability statements | Bayesian |
    
    ## Output Format
    
    ```
    ## A/B Test Analysis
    
    ### Test Summary
    - **Test Name**: [Name]
    - **Hypothesis**: [What you expected]
    - **Runtime**: [X days]
    - **Sample Size**: Control [n] / Variant [n]
    
    ### Results
    | Metric | Control | Variant | Lift | Significant? |
    |--------|---------|---------|------|--------------|
    | Conversion Rate | X% | Y% | +Z% | ✅/❌ |
    
    ### Statistical Details
    - Z-score: [X]
    - P-value: [X]
    - Confidence Interval: [X% to Y%]
    - Power achieved: [X]%
    
    ### Validity Assessment
    - ✅/❌ Minimum runtime met
    - ✅/❌ Sample size requirement met
    - ✅/❌ No external confounds identified
    
    ### Segment Breakdown
    | Segment | Control CR | Variant CR | Lift | Notes |
    |---------|-----------|------------|------|-------|
    | Mobile | | | | |
    | Desktop | | | | |
    
    ### Interpretation
    [Statistical significance vs practical significance discussion]
    
    ### "Why It Worked" Hypotheses
    1. [Hypothesis about mechanism]
    2. [Alternative explanation]
    
    ### Next Test Ideas
    1. [Follow-up test based on learnings]
    2. [Adjacent hypothesis to explore]
    
    ### Confidence Level: [HIGH/MEDIUM/LOW]
    ```
    
    ## Example
    
    **Input**: "Tested new headline. Control: 10,000 visitors, 250 conversions. Variant: 10,000 visitors, 300 conversions. Ran for 7 days."
    
    **Output**:
    ```
    ## A/B Test Analysis
    
    ### Test Summary
    - **Hypothesis**: New headline increases conversions
    - **Runtime**: 7 days ⚠️
    - **Sample Size**: Control 10,000 / Variant 10,000
    
    ### Results
    | Metric | Control | Variant | Lift | Significant? |
    |--------|---------|---------|------|--------------|
    | Conversion Rate | 2.5% | 3.0% | +20% | ✅ Yes (95%) |
    
    ### Statistical Details
    - Z-score: 2.28
    - P-value: 0.023
    - Confidence Interval: +2.3% to +37.7%
    - Power achieved: 62% ⚠️
    
    ### Validity Assessment
    - ❌ Minimum runtime NOT met (7 days < 14 days recommended)
    - ⚠️ Sample size marginal for 20% MDE
    - ❓ Cannot assess external confounds without more context
    
    ### Interpretation
    Result is **statistically significant** but validity concerns exist:
    1. 7-day runtime may miss day-of-week patterns
    2. Wide confidence interval (+2% to +38%) indicates uncertainty
    3. Recommend extending test 7 more days to confirm
    
    ### "Why It Worked" Hypotheses
    1. New headline more clearly communicates value proposition
    2. Specificity/numbers in headline increased credibility
    
    ### Next Test Ideas
    1. Test headline variations that emphasize the winning element
    2. Apply same messaging pattern to subheadline
    
    ### Confidence Level: MEDIUM
    Statistical significance achieved, but short runtime reduces confidence.
    ```
    
    ## Guidelines
    
    - Never declare a winner without checking validity
    - Distinguish statistical significance from practical significance
    - If test ran <7 days, always recommend extending
    - If sample size insufficient, calculate required runtime to reach it
    - Ask for segment data if not provided - results often differ by device/source
    
    ## Data access (Ryze MCP)
    
    This skill works best with live account data. Connect the free Ryze MCP once and Claude reads your Google Ads, Meta Ads, GA4 and Search Console directly:
    
    - claude.ai / Claude Desktop: Settings → Connectors → Add custom connector → `https://connector.get-ryze.ai/mcp`
    - Claude Code: `claude mcp add ryze --transport http https://connector.get-ryze.ai/mcp`
    - Cursor: Settings → MCP → add the same URL
    
    Setup guide: https://www.get-ryze.ai/how-to-connect-claude-to-google-meta-ads-mcp
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related