Skip to content

calculations.matches_10_overperformance

Joins parsed scores with expected goals to compute side-, total- and goal-difference overperformance (positive = scored more than expected).

flowchart LR
m5[/matches_5_score/] --> me[/calculations.matches_10_overperformance/]
m9[/matches_9_expected_goals/] --> me
me --> mart[/mart.matches/]
click m5 "/calculations/matches_5_score/" "Open"
click m9 "/calculations/matches_9_expected_goals/" "Open"
click mart "/mart/matches/" "Open"
ColumnDescriptionFormula
event_idBet365 event identifier.s.event_id
event_dateEvent date.s.event_date
event_partition_keyClickHouse partition key.s.event_partition_key
overperformance_home_scoredHome goals scored vs expected.s.score_home - eg.stats_goals_expected_home
overperformance_home_concededHome conceded vs expected (away minus expected_away).s.score_away - eg.stats_goals_expected_away
overperformance_away_scoredAway goals scored vs expected.s.score_away - eg.stats_goals_expected_away
overperformance_away_concededAway conceded vs expected.s.score_home - eg.stats_goals_expected_home
overperformance_goals_totalTotal goals vs expected.s.score_total - eg.stats_goals_expected_total
overperformance_goal_difference_homeHome-side goal difference vs expected.(s.score_home - s.score_away) - (eg.stats_goals_expected_home - eg.stats_goals_expected_away)
overperformance_goal_difference_awayAway-side goal difference vs expected.(s.score_away - s.score_home) - (eg.stats_goals_expected_away - eg.stats_goals_expected_home)