{ "cells": [ { "cell_type": "markdown", "id": "7426874b", "metadata": {}, "source": [ "# 2026 / 2027\n", "\n", "Progress points for the Serie A 2026 / 2027 season." ] }, { "cell_type": "code", "execution_count": 1, "id": "95ee6f65", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:03:07.697352Z", "iopub.status.busy": "2026-08-25T19:03:07.697233Z", "iopub.status.idle": "2026-08-25T19:03:07.987695Z", "shell.execute_reply": "2026-08-25T19:03:07.987193Z" } }, "outputs": [], "source": [ "%config InlineBackend.figure_formats = ['svg']\n", "from proggyleg import proggyleg\n", "\n", "year = 2026\n", "league = \"I1\"" ] }, { "cell_type": "markdown", "id": "c74f82ba", "metadata": {}, "source": [ "## Cumulative Points\n", "\n", "The sum of points up to a given game played." ] }, { "cell_type": "code", "execution_count": 2, "id": "fc641752", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:03:07.989187Z", "iopub.status.busy": "2026-08-25T19:03:07.989031Z", "iopub.status.idle": "2026-08-25T19:03:10.090160Z", "shell.execute_reply": "2026-08-25T19:03:10.089717Z" } }, "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": "dee5c705", "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": "a8ab04bb", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:03:10.091490Z", "iopub.status.busy": "2026-08-25T19:03:10.091370Z", "iopub.status.idle": "2026-08-25T19:03:10.259409Z", "shell.execute_reply": "2026-08-25T19:03:10.258885Z" } }, "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": "3b126a60", "metadata": {}, "source": [ "## Position" ] }, { "cell_type": "code", "execution_count": 4, "id": "d7f28d0d", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:03:10.260723Z", "iopub.status.busy": "2026-08-25T19:03:10.260540Z", "iopub.status.idle": "2026-08-25T19:03:10.398157Z", "shell.execute_reply": "2026-08-25T19:03:10.397722Z" } }, "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": "a0d04841", "metadata": {}, "source": [ "## Rolling Form\n", "\n", "Exponential weighted moving average of points won per game." ] }, { "cell_type": "code", "execution_count": 5, "id": "95a66e74", "metadata": { "execution": { "iopub.execute_input": "2026-08-25T19:03:10.399494Z", "iopub.status.busy": "2026-08-25T19:03:10.399372Z", "iopub.status.idle": "2026-08-25T19:03:10.621963Z", "shell.execute_reply": "2026-08-25T19:03:10.621557Z" } }, "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 }