{ "cells": [ { "cell_type": "markdown", "id": "1415d3dc", "metadata": {}, "source": [ "# 2026 / 2027\n", "\n", "Progress points for the EFL League One 2026 / 2027 season." ] }, { "cell_type": "code", "execution_count": 1, "id": "3658f2fe", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:02:52.091286Z", "iopub.status.busy": "2026-08-25T19:02:52.091164Z", "iopub.status.idle": "2026-08-25T19:02:52.394598Z", "shell.execute_reply": "2026-08-25T19:02:52.394129Z" } }, "outputs": [], "source": [ "%config InlineBackend.figure_formats = ['svg']\n", "from proggyleg import proggyleg\n", "\n", "year = 2026\n", "league = \"E2\"" ] }, { "cell_type": "markdown", "id": "336ab556", "metadata": {}, "source": [ "## Cumulative Points\n", "\n", "The sum of points up to a given game played." ] }, { "cell_type": "code", "execution_count": 2, "id": "691f1e89", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:02:52.396135Z", "iopub.status.busy": "2026-08-25T19:02:52.395973Z", "iopub.status.idle": "2026-08-25T19:02:53.501109Z", "shell.execute_reply": "2026-08-25T19:02:53.500663Z" } }, "outputs": [ { "data": { "image/svg+xml": [ "" ], "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "proggyleg.autoplot(year, league, which=\"cumulative\");" ] }, { "cell_type": "markdown", "id": "88e1f50d", "metadata": {}, "source": [ "## Extrapolated Points\n", "\n", "Final points assuming each team continues to score points at the same rate as they have so far." ] }, { "cell_type": "code", "execution_count": 3, "id": "0f50a7d2", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:02:53.502443Z", "iopub.status.busy": "2026-08-25T19:02:53.502318Z", "iopub.status.idle": "2026-08-25T19:02:53.721835Z", "shell.execute_reply": "2026-08-25T19:02:53.721391Z" } }, "outputs": [ { "data": { "image/svg+xml": [ "" ], "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "proggyleg.autoplot(year, league, which=\"extrapolated\");" ] }, { "cell_type": "markdown", "id": "f5774569", "metadata": {}, "source": [ "## Position" ] }, { "cell_type": "code", "execution_count": 4, "id": "86057873", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:02:53.723151Z", "iopub.status.busy": "2026-08-25T19:02:53.723025Z", "iopub.status.idle": "2026-08-25T19:02:53.905441Z", "shell.execute_reply": "2026-08-25T19:02:53.905031Z" } }, "outputs": [ { "data": { "image/svg+xml": [ "" ], "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "proggyleg.autoplot(year, league, which=\"position\");" ] }, { "cell_type": "markdown", "id": "24c7b2c0", "metadata": {}, "source": [ "## Rolling Form\n", "\n", "Exponential weighted moving average of points won per game." ] }, { "cell_type": "code", "execution_count": 5, "id": "a0ddfd9e", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:02:53.906807Z", "iopub.status.busy": "2026-08-25T19:02:53.906674Z", "iopub.status.idle": "2026-08-25T19:02:54.173185Z", "shell.execute_reply": "2026-08-25T19:02:54.172705Z" } }, "outputs": [ { "data": { "image/svg+xml": [ "" ], "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "proggyleg.autoplot(year, league, which=\"form\");" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3" }, "mystnb": { "execution_mode": "force" } }, "nbformat": 4, "nbformat_minor": 5 }