ab-test-statistical-analyzer
SolidPerforms statistical analysis for A/B testing experiments
Testing & QA 814 stars
53 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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 alongs...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Related Skills
Testing & QA Featured
rtk-tdd
Enforces TDD (Red-Green-Refactor) for Rust development. Auto-triggers on implementation, testing, refactoring, and bug fixing tasks. Provides Rust-idiomatic testing patterns with anyhow/thiserror, cfg(test), and Arrange-Act-Assert workflow.
55,551 Updated today
rtk-ai Testing & QA Featured
tdd-rust
TDD workflow for RTK filter development. Red-Green-Refactor with Rust idioms. Real fixtures, token savings assertions, snapshot tests with insta. Auto-triggers on new filter implementation.
55,551 Updated today
rtk-ai Testing & QA Featured
wordpress-penetration-testing
Assess WordPress installations for common vulnerabilities and WordPress 7.0 attack surfaces.
38,979 Updated today
sickn33