Loading...
Loading...
Compare original and translation side by side
undefinedundefinedundefinedundefined| Tool | Purpose | Input | Output |
|---|---|---|---|
| Sample size calculation | Baseline rate, MDE, power | Required samples + duration |
| Test plan design | JSON test config | Complete test plan document |
| Results analysis | JSON with test results | Statistical analysis + recommendation |
| 工具 | 用途 | 输入 | 输出 |
|---|---|---|---|
| 样本量计算 | 基准转化率、MDE(最小可检测效应)、检验效能 | 所需样本量 + 测试时长 |
| 测试计划设计 | JSON格式的测试配置文件 | 完整的测试计划文档 |
| 结果分析 | 包含测试结果的JSON文件 | 统计分析报告 + 决策建议 |
sample_size_calculator.pytest_designer.pysample_size_calculator.pytest_designer.pyresults_analyzer.pyresults_analyzer.pyresults_analyzer.py --batchresults_analyzer.py --batchreferences/ab-testing-guide.mdreferences/ab-testing-guide.md{
"test_name": "Homepage CTA Button Color",
"hypothesis": "Changing the CTA button from blue to green will increase click-through rate",
"metric_primary": "cta_click_rate",
"metric_secondary": ["signup_rate", "bounce_rate"],
"baseline_rate": 0.045,
"minimum_detectable_effect": 0.10,
"significance_level": 0.05,
"power": 0.80,
"variants": [
{"name": "control", "description": "Current blue CTA button"},
{"name": "treatment", "description": "Green CTA button"}
],
"daily_traffic": 5000,
"allocation": {"control": 0.50, "treatment": 0.50}
}{
"test_name": "Homepage CTA Button Color",
"hypothesis": "Changing the CTA button from blue to green will increase click-through rate",
"metric_primary": "cta_click_rate",
"metric_secondary": ["signup_rate", "bounce_rate"],
"baseline_rate": 0.045,
"minimum_detectable_effect": 0.10,
"significance_level": 0.05,
"power": 0.80,
"variants": [
{"name": "control", "description": "Current blue CTA button"},
{"name": "treatment", "description": "Green CTA button"}
],
"daily_traffic": 5000,
"allocation": {"control": 0.50, "treatment": 0.50}
}{
"test_name": "Homepage CTA Button Color",
"variants": {
"control": {"visitors": 12500, "conversions": 563},
"treatment": {"visitors": 12500, "conversions": 625}
},
"metric": "cta_click_rate",
"significance_level": 0.05
}{
"test_name": "Homepage CTA Button Color",
"variants": {
"control": {"visitors": 12500, "conversions": 563},
"treatment": {"visitors": 12500, "conversions": 625}
},
"metric": "cta_click_rate",
"significance_level": 0.05
}| Context | Small Effect | Medium Effect | Large Effect |
|---|---|---|---|
| Conversion Rate | 2-5% relative | 5-15% relative | > 15% relative |
| Revenue per User | 1-3% | 3-8% | > 8% |
| Engagement Rate | 3-5% | 5-10% | > 10% |
| 场景 | 小效应 | 中等效应 | 大效应 |
|---|---|---|---|
| 转化率 | 相对提升2-5% | 相对提升5-15% | 相对提升>15% |
| 用户人均收入 | 提升1-3% | 提升3-8% | 提升>8% |
| 参与率 | 提升3-5% | 提升5-10% | 提升>10% |