{
"cells": [
{
"cell_type": "markdown",
"id": "eab26231",
"metadata": {},
"source": [
"# 2025 / 2026\n",
"\n",
"Progress points for the EFL League Two 2025 / 2026 season."
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "1d539a42",
"metadata": {
"execution": {
"iopub.execute_input": "2025-11-03T19:55:28.388025Z",
"iopub.status.busy": "2025-11-03T19:55:28.387902Z",
"iopub.status.idle": "2025-11-03T19:55:28.682006Z",
"shell.execute_reply": "2025-11-03T19:55:28.681673Z"
}
},
"outputs": [],
"source": [
"%config InlineBackend.figure_formats = ['svg']\n",
"from proggyleg import proggyleg\n",
"year = 2025\n",
"league = \"E3\""
]
},
{
"cell_type": "markdown",
"id": "3e1dc896",
"metadata": {},
"source": [
"## Cumulative Points\n",
"\n",
"The sum of points up to a given game played."
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "1681d6a0",
"metadata": {
"execution": {
"iopub.execute_input": "2025-11-03T19:55:28.683480Z",
"iopub.status.busy": "2025-11-03T19:55:28.683319Z",
"iopub.status.idle": "2025-11-03T19:55:30.280897Z",
"shell.execute_reply": "2025-11-03T19:55:30.280426Z"
}
},
"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": "3ffed9b0",
"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": "823e375b",
"metadata": {
"execution": {
"iopub.execute_input": "2025-11-03T19:55:30.282187Z",
"iopub.status.busy": "2025-11-03T19:55:30.282061Z",
"iopub.status.idle": "2025-11-03T19:55:30.550098Z",
"shell.execute_reply": "2025-11-03T19:55:30.549642Z"
}
},
"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": "23b4e741",
"metadata": {},
"source": [
"## Position"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "e22aca24",
"metadata": {
"execution": {
"iopub.execute_input": "2025-11-03T19:55:30.551350Z",
"iopub.status.busy": "2025-11-03T19:55:30.551186Z",
"iopub.status.idle": "2025-11-03T19:55:30.763174Z",
"shell.execute_reply": "2025-11-03T19:55:30.762773Z"
}
},
"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": "968d494b",
"metadata": {},
"source": [
"## Rolling Form\n",
"\n",
"Exponential weighted moving average of points won per game."
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "b85cdffd",
"metadata": {
"execution": {
"iopub.execute_input": "2025-11-03T19:55:30.764443Z",
"iopub.status.busy": "2025-11-03T19:55:30.764317Z",
"iopub.status.idle": "2025-11-03T19:55:31.074431Z",
"shell.execute_reply": "2025-11-03T19:55:31.073830Z"
}
},
"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
}