Performs statistical analysis for A/B testing experiments
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill ab-test-statistical-analyzer --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ab Test Statistical Analyzer?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-ab-test-statistical-analyzer-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: A/B Test Statistical Analyzer
description: Performs statistical analysis for A/B testing experiments
version: 1.0.0
category: Analytics
skillId: SK-DEA-014
allowed-tools:
- Read
- Write
- Edit
- Glob
- Grep
- Bash
graph:
domains: [domain:data-engineering]
specializations: [specialization:data-engineering-analytics]
skillAreas: [skill-area:statistical-analysis, skill-area:data-analytics]
roles: [role:analytics-engineer, role:data-analyst]
workflows: [workflow:experiment-design]
---
# A/B Test Statistical Analyzer
## Overview
Performs statistical analysis for A/B testing experiments. This skill provides rigorous statistical methods to determine experiment validity and significance.
## Capabilities
- Sample size calculation
- Statistical significance testing
- Bayesian analysis
- Sequential testing
- Multi-armed bandit analysis
- Segment analysis
- Novelty/primacy effect detection
- SRM (Sample Ratio Mismatch) detection
- Confidence interval calculation
- Power analysis
## Input Schema
```json
{
"experimentData": {
"control": "object",
"variants": ["object"]
},
"metrics": [{
"name": "string",
"type": "conversion|continuous|ratio"
}],
"analysisType": "frequentist|bayesian|sequential"
}
```
## Output Schema
```json
{
"results": [{
"metric": "string",
"controlValue": "number",
"variantValues": ["number"],
"pValue": "number",
"confidenceInterval": "object",
"significant": "boolean"
}],
"srmCheck": "object",
"recommendation": "string"
}
```
## Target Processes
- A/B Testing Pipeline
- Feature Store Setup
## Usage Guidelines
1. Provide complete experiment data for control and variants
2. Define metrics with appropriate types
3. Select analysis methodology based on requirements
4. Review SRM checks before interpreting results
## Best Practices
- Always check for sample ratio mismatch before analysis
- Use appropriate statistical tests for metric types
- Consider practical significance alongside statistical significance
- Account for multiple comparison corrections
- Document assumptions and limitations
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!