{ "cells": [ { "cell_type": "markdown", "id": "90d215f9", "metadata": {}, "source": [ "# 1999 / 2000\n", "\n", "Progress points for the Premier League 1999 / 2000 season." ] }, { "cell_type": "code", "execution_count": 1, "id": "8e54e40b", "metadata": { "execution": { "iopub.execute_input": "2024-12-24T00:22:21.348514Z", "iopub.status.busy": "2024-12-24T00:22:21.348313Z", "iopub.status.idle": "2024-12-24T00:22:21.572540Z", "shell.execute_reply": "2024-12-24T00:22:21.572263Z" } }, "outputs": [], "source": [ "%config InlineBackend.figure_formats = ['svg']\n", "from proggyleg import proggyleg\n", "year = 1999\n", "league = \"E0\"" ] }, { "cell_type": "markdown", "id": "a04bcaf3", "metadata": {}, "source": [ "## Cumulative Points\n", "\n", "The sum of points up to a given game played." ] }, { "cell_type": "code", "execution_count": 2, "id": "48dcf389", "metadata": { "execution": { "iopub.execute_input": "2024-12-24T00:22:21.574305Z", "iopub.status.busy": "2024-12-24T00:22:21.574198Z", "iopub.status.idle": "2024-12-24T00:22:22.841800Z", "shell.execute_reply": "2024-12-24T00:22:22.841495Z" } }, "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": "92909e60", "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": "4a2acf2c", "metadata": { "execution": { "iopub.execute_input": "2024-12-24T00:22:22.844416Z", "iopub.status.busy": "2024-12-24T00:22:22.844321Z", "iopub.status.idle": "2024-12-24T00:22:22.955066Z", "shell.execute_reply": "2024-12-24T00:22:22.954775Z" } }, "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": "011ff6c0", "metadata": {}, "source": [ "## Position" ] }, { "cell_type": "code", "execution_count": 4, "id": "1270363b", "metadata": { "execution": { "iopub.execute_input": "2024-12-24T00:22:22.957282Z", "iopub.status.busy": "2024-12-24T00:22:22.957178Z", "iopub.status.idle": "2024-12-24T00:22:23.072190Z", "shell.execute_reply": "2024-12-24T00:22:23.071904Z" } }, "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": "c6d8e659", "metadata": {}, "source": [ "## Rolling Form\n", "\n", "Exponential weighted moving average of points won per game." ] }, { "cell_type": "code", "execution_count": 5, "id": "184c7ec0", "metadata": { "execution": { "iopub.execute_input": "2024-12-24T00:22:23.074121Z", "iopub.status.busy": "2024-12-24T00:22:23.074016Z", "iopub.status.idle": "2024-12-24T00:22:23.189385Z", "shell.execute_reply": "2024-12-24T00:22:23.189084Z" } }, "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 }