{ "cells": [ { "cell_type": "markdown", "id": "98e3cad3", "metadata": {}, "source": [ "# 2015 / 2016\n", "\n", "Progress points for the EFL League One 2015 / 2016 season." ] }, { "cell_type": "code", "execution_count": 1, "id": "b1b99556", "metadata": { "execution": { "iopub.execute_input": "2025-11-03T19:55:41.833569Z", "iopub.status.busy": "2025-11-03T19:55:41.833451Z", "iopub.status.idle": "2025-11-03T19:55:42.129905Z", "shell.execute_reply": "2025-11-03T19:55:42.129427Z" } }, "outputs": [], "source": [ "%config InlineBackend.figure_formats = ['svg']\n", "from proggyleg import proggyleg\n", "year = 2015\n", "league = \"E2\"" ] }, { "cell_type": "markdown", "id": "6c98db32", "metadata": {}, "source": [ "## Cumulative Points\n", "\n", "The sum of points up to a given game played." ] }, { "cell_type": "code", "execution_count": 2, "id": "b1a84260", "metadata": { "execution": { "iopub.execute_input": "2025-11-03T19:55:42.131430Z", "iopub.status.busy": "2025-11-03T19:55:42.131226Z", "iopub.status.idle": "2025-11-03T19:55:43.878042Z", "shell.execute_reply": "2025-11-03T19:55:43.877402Z" } }, "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": "cad53016", "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": "7a04b540", "metadata": { "execution": { "iopub.execute_input": "2025-11-03T19:55:43.880368Z", "iopub.status.busy": "2025-11-03T19:55:43.880235Z", "iopub.status.idle": "2025-11-03T19:55:44.184235Z", "shell.execute_reply": "2025-11-03T19:55:44.183881Z" } }, "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": "b4ec122c", "metadata": {}, "source": [ "## Position" ] }, { "cell_type": "code", "execution_count": 4, "id": "08a9fd58", "metadata": { "execution": { "iopub.execute_input": "2025-11-03T19:55:44.186477Z", "iopub.status.busy": "2025-11-03T19:55:44.186354Z", "iopub.status.idle": "2025-11-03T19:55:44.479481Z", "shell.execute_reply": "2025-11-03T19:55:44.478996Z" } }, "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": "a344920f", "metadata": {}, "source": [ "## Rolling Form\n", "\n", "Exponential weighted moving average of points won per game." ] }, { "cell_type": "code", "execution_count": 5, "id": "6344aad9", "metadata": { "execution": { "iopub.execute_input": "2025-11-03T19:55:44.481399Z", "iopub.status.busy": "2025-11-03T19:55:44.481274Z", "iopub.status.idle": "2025-11-03T19:55:44.782987Z", "shell.execute_reply": "2025-11-03T19:55:44.782676Z" } }, "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": "off" } }, "nbformat": 4, "nbformat_minor": 5 }