sweep: match.humidity_pct >= 73
β lab Β· AUC 0.658 (real signal) Β· ran 7/4/2026
What this is: Asks which pre-match factors drive one specific outcome, using a walk-forward model and permutation importance.
| Factor | Importance | Direction | Survives all eras? |
|---|
| match.stakes | 0.1180 | β -0.131 | β³ yes |
| home__t3__team.season_ppg | 0.0119 | β -0.000 | no |
| market.p_over25 | 0.0076 | β +0.013 | no |
| away__team.travel_km | 0.0062 | β -0.007 | no |
| away__team.shots_for_avg_l5 | 0.0062 | β -0.003 | no |
| away__t3__team.season_ppg | 0.0058 | β +0.003 | no |
| match.ref_fouls_avg | 0.0055 | β -0.025 | β³ yes |
| x__home__team.goals_for_avg_l5__away__team.defensive_leak_l5 | 0.0053 | β +0.006 | no |
| home__t3__team.elo | 0.0052 | β -0.002 | no |
| away__t3__team.goals_volatility_l10 | 0.0052 | β -0.001 | no |
| away__team.goal_diff_avg_l5 | 0.0051 | β -0.007 | no |
| away__team.rest_days | 0.0051 | β -0.109 | β³ yes |
Reading the columnswhat each number actually means
| AUC | predictability: 0.50 = coin flip, ~0.70 = ceiling for sports |
| Importance | how much the model leans on this factor (permutation importance) |
| Direction | sign of the raw correlation with the outcome |
| Survives all eras | effect points the same way in every historical era |
Spec Β· the reproducible recipe
{
"name": "sweep: match.humidity_pct >= 73",
"sport": "football",
"target": {
"op": ">=",
"value": 73,
"metric": "match.humidity_pct"
},
"features": "all"
}