penaltyblog.models.FootballProbabilityGrid#
- class penaltyblog.models.FootballProbabilityGrid(goal_matrix: ndarray[Any, dtype[_ScalarType_co]], home_goal_expectation: float, away_goal_expectation: float)[source]#
Bases:
object
Class for calculating probabilities of football outcomes.
- __init__(goal_matrix: ndarray[Any, dtype[_ScalarType_co]], home_goal_expectation: float, away_goal_expectation: float)[source]#
Calculate probabilities of football outcomes.
- Parameters:
goal_matrix (List[List[float]] Matrix of probabilities for each goal difference)
home_goal_expectation (float Expected number of goals for home)
away_goal_expectation (float Expected number of goals for away)
Methods
__init__
(goal_matrix, home_goal_expectation, ...)Calculate probabilities of football outcomes.
asian_handicap
(home_away, strike)Calculate probabilities for asian handicap market
total_goals
(over_under, strike)Calculate probabilities for total goals market
Attributes
Probability of away win
Probability of both teams scoring
Probability of draw
1x2 Probabilities
Probability of home win
- asian_handicap(home_away: str, strike: float) float [source]#
Calculate probabilities for asian handicap market
- Parameters:
home_away (str) – ‘home’ or ‘away’
strike (float) – Handicap value
- property away_win: float#
Probability of away win
- property both_teams_to_score: float#
Probability of both teams scoring
- property draw: float#
Probability of draw
- property home_draw_away: List[float]#
1x2 Probabilities
- property home_win: float#
Probability of home win