2002 / 2003¶
Progress points for the Bundesliga 2002 / 2003 season.
%config InlineBackend.figure_formats = ['svg']
from proggyleg import proggyleg
year = 2002
league = "D1"
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");