1999 / 2000¶
Progress points for the Premier League 1999 / 2000 season.
%config InlineBackend.figure_formats = ['svg']
from proggyleg import proggyleg
year = 1999
league = "E0"
Cumulative Points¶
The sum of points up to a given game played.
proggyleg.autoplot(year, league, which="cumulative");
Extrapolated Points¶
Final points assuming each team continues to score points at the same rate as they have so far.
proggyleg.autoplot(year, league, which="extrapolated");
Position¶
proggyleg.autoplot(year, league, which="position");
Rolling Form¶
Exponential weighted moving average of points won per game.
proggyleg.autoplot(year, league, which="form");