From 5db6b1ebb39d5aa78e677e3c9137443e8077a400 Mon Sep 17 00:00:00 2001 From: ashwinmaran <amaran@wisc.edu> Date: Tue, 21 Nov 2023 22:38:49 -0600 Subject: [PATCH] fix links --- p12/README.md | 2 +- p12/p12.ipynb | 379 ++++++++++++++++++++++---------------------------- 2 files changed, 164 insertions(+), 217 deletions(-) diff --git a/p12/README.md b/p12/README.md index e49c0aa..441ec73 100644 --- a/p12/README.md +++ b/p12/README.md @@ -11,7 +11,7 @@ ## Instructions: -This project will focus on **Pandas**, and **BeautifulSoup**. To start, download [`p12.ipynb`](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-f23-projects/-/tree/main/p12/p12.ipynb), [`public_tests.py`](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-f23-projects/-/tree/main/p12/pubic_tests.py), and [`expected_dfs.html`](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-f23-projects/-/tree/main/p12/expected_dfs.html). +This project will focus on **Pandas**, and **BeautifulSoup**. To start, download [`p12.ipynb`](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-f23-projects/-/tree/main/p12/p12.ipynb), [`public_tests.py`](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-f23-projects/-/blob/main/p12/public_tests.py), and [`expected_dfs.html`](https://git.doit.wisc.edu/cdis/cs/courses/cs220/cs220-f23-projects/-/tree/main/p12/expected_dfs.html). **Important Warning:** You must **not** manually download any of the other `json` or `html` files. In particular, you are **not** allowed to manually download the files `rankings.json`, `2021.html`, `2022.html`, or `2023.html`. You **must** download these files using Python in your `p12.ipynb` notebook as a part of the project, using the `download` function. Otherwise, your code may pass on **your computer**, but **fail** on Gradescope. diff --git a/p12/p12.ipynb b/p12/p12.ipynb index 34a8690..cac2d70 100644 --- a/p12/p12.ipynb +++ b/p12/p12.ipynb @@ -3,7 +3,7 @@ { "cell_type": "code", "execution_count": null, - "id": "e8b7c119", + "id": "b1c3ea7f", "metadata": { "cell_type": "code", "deletable": true, @@ -24,10 +24,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:14:57.789912Z", - "iopub.status.busy": "2023-11-22T04:14:57.789912Z", - "iopub.status.idle": "2023-11-22T04:14:59.091790Z", - "shell.execute_reply": "2023-11-22T04:14:59.090760Z" + "iopub.execute_input": "2023-11-22T04:35:26.199706Z", + "iopub.status.busy": "2023-11-22T04:35:26.199706Z", + "iopub.status.idle": "2023-11-22T04:35:27.206558Z", + "shell.execute_reply": "2023-11-22T04:35:27.206558Z" } }, "outputs": [], @@ -43,10 +43,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:14:59.095790Z", - "iopub.status.busy": "2023-11-22T04:14:59.095790Z", - "iopub.status.idle": "2023-11-22T04:14:59.101042Z", - "shell.execute_reply": "2023-11-22T04:14:59.100010Z" + "iopub.execute_input": "2023-11-22T04:35:27.210571Z", + "iopub.status.busy": "2023-11-22T04:35:27.210571Z", + "iopub.status.idle": "2023-11-22T04:35:27.214164Z", + "shell.execute_reply": "2023-11-22T04:35:27.214164Z" } }, "outputs": [], @@ -170,59 +170,6 @@ "You will work with this json file for most of this project. At the end of this project, you will generate an identical json file by parsing the html files yourself." ] }, - { - "cell_type": "markdown", - "id": "c04e3480", - "metadata": { - "deletable": false, - "editable": false - }, - "source": [ - "\n", - "## Instructions for Random Data Generation:\n", - "\n", - "Each of the files `2021.html`, `2022.html`, `2023.html` contains a single HTML table with header attributes `class=\"table\"` and `id=\"cwurTable\"` and the following `style`:\n", - "```html\n", - "<style>\n", - " table {border-collapse: collapse; width: 100%;}\n", - " th, td {text-align: left; padding: 0px; border-style:hidden;}\n", - " tr:nth-child(even){background-color: #f2f2f2;}\n", - " th {background-color: #222222; color: #ffffff; font-weight: 500; font-color: white;}\n", - "</style>\n", - "```\n", - "\n", - "Inside the table, the `thead` tag contains the following columns:\n", - "```html\n", - "<thead>\n", - " <tr>\n", - " <th style=\"vertical-align:middle\">World Rank</th>\n", - " <th style=\"vertical-align:middle\">Institution</th>\n", - " <th style=\"vertical-align:middle\">Country</th>\n", - " <th style=\"vertical-align:middle\">National Rank</th>\n", - " <th style=\"vertical-align:middle\">Education Rank</th>\n", - " <th style=\"vertical-align:middle\">Employability Rank</th>\n", - " <th style=\"vertical-align:middle\">Faculty Rank</th>\n", - " <th style=\"vertical-align:middle\">Research Rank</th>\n", - " <th style=\"vertical-align:middle\">Score</th>\n", - " </tr>\n", - "</thead>\n", - "```\n", - "\n", - "The `tbody` column contains *2000* rows.\n", - "\n", - "The formatting of the data in each column differs slightly between the files `2021.html`, `2022.html`, and `2023.html`, but there are several commonalities between the three files.\n", - "\n", - "* In each file, the `World Rank` column contains the integers from *1* to *2000* in increasing order.\n", - "* The `Institution` column contains data about the name of the institution. Each `Institution` name in a file must be **unique**.\n", - "* The `Country` column contains data about the country that the `Institution` is located in. There are between *90* and *120* **unique** countries in the entire dataset.\n", - "* The `National Rank` column contains data about the ranking of an `Institution` within that `Country`. For example, if the country `Germany` has two institutions in the table at `World Rank` *100* and *120* respectively, then the `National Rank` of these instituitions would be *1* and *2* respectively.\n", - "* The `Education Rank` column contains the rank of each `Institution` for this category. So, it is a **unique** integer between *1* and *2000*. No number can appear more than once in this column in the entire table. There must be a weak positive correlation between this column and the `World Rank` column, but they must not be identical. For some rows, the value must be **missing**, and it should have `-` as the value. There **must** be **missing** rows scattered throughout the table, with more missing rows near the end of the table.\n", - "* The `Employability Rank` column contains the rank of each `Institution` for this category. So, it is a **unique** integer between *1* and *2000*. No number can appear more than once in this column in the entire table. There must be a weak positive correlation between this column and the `World Rank` column, but they must not be identical. For some rows, the value must be **missing**, and it should have `-` as the value. There **must** be **missing** rows scattered throughout the table, with more missing rows near the end of the table.\n", - "* The `Faculty Rank` column contains the rank of each `Institution` for this category. So, it is a **unique** integer between *1* and *2000*. No number can appear more than once in this column in the entire table. There must be a weak positive correlation between this column and the `World Rank` column, but they must not be identical. For some rows, the value must be **missing**, and it should have `-` as the value. There **must** be **missing** rows scattered throughout the table, with more missing rows near the end of the table.\n", - "* The `Research Rank` column contains the rank of each `Institution` for this category. So, it is a **unique** integer between *1* and *2000*. No number can appear more than once in this column in the entire table. There must be a weak positive correlation between this column and the `World Rank` column, but they must not be identical. For some rows, the value must be **missing**, and it should have `-` as the value. There **must** be **missing** rows scattered throughout the table, with more missing rows near the end of the table.\n", - "* The `Score` column contains the combined score out of `100.0` for each `Institution`. The top university has a `Score` of `100.0`. For the top hundred institutions, the value must be **strictly decreasing**. After that, it is sufficient if the values in this column are **non-increasing**. The bottom university must have a `Score` around `60.0`." - ] - }, { "cell_type": "markdown", "id": "735414e6", @@ -284,10 +231,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:14:59.107042Z", - "iopub.status.busy": "2023-11-22T04:14:59.106042Z", - "iopub.status.idle": "2023-11-22T04:15:00.175006Z", - "shell.execute_reply": "2023-11-22T04:15:00.173975Z" + "iopub.execute_input": "2023-11-22T04:35:27.219173Z", + "iopub.status.busy": "2023-11-22T04:35:27.218192Z", + "iopub.status.idle": "2023-11-22T04:35:28.110574Z", + "shell.execute_reply": "2023-11-22T04:35:28.109561Z" }, "tags": [] }, @@ -318,10 +265,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:00.179985Z", - "iopub.status.busy": "2023-11-22T04:15:00.178986Z", - "iopub.status.idle": "2023-11-22T04:15:00.185125Z", - "shell.execute_reply": "2023-11-22T04:15:00.185125Z" + "iopub.execute_input": "2023-11-22T04:35:28.114585Z", + "iopub.status.busy": "2023-11-22T04:35:28.114585Z", + "iopub.status.idle": "2023-11-22T04:35:28.120569Z", + "shell.execute_reply": "2023-11-22T04:35:28.119539Z" }, "tags": [] }, @@ -333,7 +280,7 @@ { "cell_type": "code", "execution_count": null, - "id": "5c3c7307", + "id": "79556e7b", "metadata": { "deletable": true, "editable": true @@ -364,10 +311,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:00.600080Z", - "iopub.status.busy": "2023-11-22T04:15:00.600080Z", - "iopub.status.idle": "2023-11-22T04:15:00.610348Z", - "shell.execute_reply": "2023-11-22T04:15:00.609336Z" + "iopub.execute_input": "2023-11-22T04:35:28.476845Z", + "iopub.status.busy": "2023-11-22T04:35:28.476845Z", + "iopub.status.idle": "2023-11-22T04:35:28.484304Z", + "shell.execute_reply": "2023-11-22T04:35:28.484304Z" }, "tags": [] }, @@ -386,10 +333,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:00.613346Z", - "iopub.status.busy": "2023-11-22T04:15:00.613346Z", - "iopub.status.idle": "2023-11-22T04:15:00.695807Z", - "shell.execute_reply": "2023-11-22T04:15:00.694777Z" + "iopub.execute_input": "2023-11-22T04:35:28.488317Z", + "iopub.status.busy": "2023-11-22T04:35:28.488317Z", + "iopub.status.idle": "2023-11-22T04:35:28.554390Z", + "shell.execute_reply": "2023-11-22T04:35:28.554390Z" }, "tags": [] }, @@ -401,7 +348,7 @@ { "cell_type": "code", "execution_count": null, - "id": "b813b0a5", + "id": "9f7577b2", "metadata": { "deletable": true, "editable": true @@ -432,10 +379,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:00.870388Z", - "iopub.status.busy": "2023-11-22T04:15:00.869388Z", - "iopub.status.idle": "2023-11-22T04:15:00.878729Z", - "shell.execute_reply": "2023-11-22T04:15:00.877720Z" + "iopub.execute_input": "2023-11-22T04:35:28.686292Z", + "iopub.status.busy": "2023-11-22T04:35:28.686292Z", + "iopub.status.idle": "2023-11-22T04:35:28.692969Z", + "shell.execute_reply": "2023-11-22T04:35:28.692969Z" }, "tags": [] }, @@ -447,7 +394,7 @@ { "cell_type": "code", "execution_count": null, - "id": "4f42cbd8", + "id": "a0095e50", "metadata": { "deletable": true, "editable": true @@ -484,10 +431,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:01.219574Z", - "iopub.status.busy": "2023-11-22T04:15:01.219574Z", - "iopub.status.idle": "2023-11-22T04:15:01.236471Z", - "shell.execute_reply": "2023-11-22T04:15:01.235463Z" + "iopub.execute_input": "2023-11-22T04:35:28.954693Z", + "iopub.status.busy": "2023-11-22T04:35:28.953676Z", + "iopub.status.idle": "2023-11-22T04:35:28.967045Z", + "shell.execute_reply": "2023-11-22T04:35:28.967045Z" }, "tags": [] }, @@ -499,7 +446,7 @@ { "cell_type": "code", "execution_count": null, - "id": "32a35f6d", + "id": "ec9362d5", "metadata": { "deletable": true, "editable": true @@ -538,10 +485,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:01.755524Z", - "iopub.status.busy": "2023-11-22T04:15:01.755524Z", - "iopub.status.idle": "2023-11-22T04:15:01.772499Z", - "shell.execute_reply": "2023-11-22T04:15:01.771403Z" + "iopub.execute_input": "2023-11-22T04:35:29.375983Z", + "iopub.status.busy": "2023-11-22T04:35:29.374984Z", + "iopub.status.idle": "2023-11-22T04:35:29.388829Z", + "shell.execute_reply": "2023-11-22T04:35:29.388829Z" }, "tags": [] }, @@ -553,7 +500,7 @@ { "cell_type": "code", "execution_count": null, - "id": "2a47d62b", + "id": "30e4f93a", "metadata": { "deletable": true, "editable": true @@ -586,10 +533,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:02.285476Z", - "iopub.status.busy": "2023-11-22T04:15:02.285476Z", - "iopub.status.idle": "2023-11-22T04:15:02.293475Z", - "shell.execute_reply": "2023-11-22T04:15:02.292438Z" + "iopub.execute_input": "2023-11-22T04:35:29.809088Z", + "iopub.status.busy": "2023-11-22T04:35:29.808087Z", + "iopub.status.idle": "2023-11-22T04:35:29.817847Z", + "shell.execute_reply": "2023-11-22T04:35:29.817847Z" }, "tags": [] }, @@ -601,7 +548,7 @@ { "cell_type": "code", "execution_count": null, - "id": "50a92ea5", + "id": "b857c0f0", "metadata": { "deletable": true, "editable": true @@ -634,10 +581,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:02.883021Z", - "iopub.status.busy": "2023-11-22T04:15:02.882020Z", - "iopub.status.idle": "2023-11-22T04:15:02.892197Z", - "shell.execute_reply": "2023-11-22T04:15:02.891187Z" + "iopub.execute_input": "2023-11-22T04:35:30.264602Z", + "iopub.status.busy": "2023-11-22T04:35:30.264602Z", + "iopub.status.idle": "2023-11-22T04:35:30.271406Z", + "shell.execute_reply": "2023-11-22T04:35:30.270400Z" }, "tags": [] }, @@ -649,7 +596,7 @@ { "cell_type": "code", "execution_count": null, - "id": "01c54044", + "id": "67b8d4ae", "metadata": { "deletable": true, "editable": true @@ -702,10 +649,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:03.410616Z", - "iopub.status.busy": "2023-11-22T04:15:03.410616Z", - "iopub.status.idle": "2023-11-22T04:15:03.429194Z", - "shell.execute_reply": "2023-11-22T04:15:03.428183Z" + "iopub.execute_input": "2023-11-22T04:35:30.660780Z", + "iopub.status.busy": "2023-11-22T04:35:30.659780Z", + "iopub.status.idle": "2023-11-22T04:35:30.673825Z", + "shell.execute_reply": "2023-11-22T04:35:30.673825Z" }, "tags": [] }, @@ -717,7 +664,7 @@ { "cell_type": "code", "execution_count": null, - "id": "cba44e22", + "id": "84ea6daa", "metadata": { "deletable": true, "editable": true @@ -750,10 +697,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:03.966905Z", - "iopub.status.busy": "2023-11-22T04:15:03.966905Z", - "iopub.status.idle": "2023-11-22T04:15:03.977044Z", - "shell.execute_reply": "2023-11-22T04:15:03.976030Z" + "iopub.execute_input": "2023-11-22T04:35:31.064524Z", + "iopub.status.busy": "2023-11-22T04:35:31.064524Z", + "iopub.status.idle": "2023-11-22T04:35:31.072207Z", + "shell.execute_reply": "2023-11-22T04:35:31.072207Z" }, "tags": [] }, @@ -765,7 +712,7 @@ { "cell_type": "code", "execution_count": null, - "id": "b99d648e", + "id": "fb41b236", "metadata": { "deletable": true, "editable": true @@ -798,10 +745,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:04.671179Z", - "iopub.status.busy": "2023-11-22T04:15:04.671179Z", - "iopub.status.idle": "2023-11-22T04:15:04.683130Z", - "shell.execute_reply": "2023-11-22T04:15:04.682115Z" + "iopub.execute_input": "2023-11-22T04:35:31.581358Z", + "iopub.status.busy": "2023-11-22T04:35:31.581358Z", + "iopub.status.idle": "2023-11-22T04:35:31.590577Z", + "shell.execute_reply": "2023-11-22T04:35:31.589570Z" }, "tags": [] }, @@ -813,7 +760,7 @@ { "cell_type": "code", "execution_count": null, - "id": "4ca4c555", + "id": "f4794893", "metadata": { "deletable": true, "editable": true @@ -846,10 +793,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:05.372269Z", - "iopub.status.busy": "2023-11-22T04:15:05.372269Z", - "iopub.status.idle": "2023-11-22T04:15:05.382269Z", - "shell.execute_reply": "2023-11-22T04:15:05.381255Z" + "iopub.execute_input": "2023-11-22T04:35:32.107366Z", + "iopub.status.busy": "2023-11-22T04:35:32.106364Z", + "iopub.status.idle": "2023-11-22T04:35:32.116245Z", + "shell.execute_reply": "2023-11-22T04:35:32.115220Z" }, "tags": [] }, @@ -861,7 +808,7 @@ { "cell_type": "code", "execution_count": null, - "id": "9daaed3c", + "id": "e59e3421", "metadata": { "deletable": true, "editable": true @@ -894,10 +841,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:06.052666Z", - "iopub.status.busy": "2023-11-22T04:15:06.052666Z", - "iopub.status.idle": "2023-11-22T04:15:06.062618Z", - "shell.execute_reply": "2023-11-22T04:15:06.061608Z" + "iopub.execute_input": "2023-11-22T04:35:32.650944Z", + "iopub.status.busy": "2023-11-22T04:35:32.650944Z", + "iopub.status.idle": "2023-11-22T04:35:32.663348Z", + "shell.execute_reply": "2023-11-22T04:35:32.662341Z" }, "tags": [] }, @@ -909,7 +856,7 @@ { "cell_type": "code", "execution_count": null, - "id": "2beee139", + "id": "95ce6117", "metadata": { "deletable": true, "editable": true @@ -953,10 +900,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:06.806573Z", - "iopub.status.busy": "2023-11-22T04:15:06.806573Z", - "iopub.status.idle": "2023-11-22T04:15:06.820506Z", - "shell.execute_reply": "2023-11-22T04:15:06.819493Z" + "iopub.execute_input": "2023-11-22T04:35:33.246581Z", + "iopub.status.busy": "2023-11-22T04:35:33.246581Z", + "iopub.status.idle": "2023-11-22T04:35:33.257610Z", + "shell.execute_reply": "2023-11-22T04:35:33.257610Z" }, "tags": [] }, @@ -984,7 +931,7 @@ { "cell_type": "code", "execution_count": null, - "id": "000310eb", + "id": "60b24fef", "metadata": { "deletable": true, "editable": true @@ -997,7 +944,7 @@ { "cell_type": "code", "execution_count": null, - "id": "7391d3b5", + "id": "adbf5262", "metadata": { "deletable": true, "editable": true @@ -1010,7 +957,7 @@ { "cell_type": "code", "execution_count": null, - "id": "51e26839", + "id": "4b730477", "metadata": { "deletable": true, "editable": true @@ -1023,7 +970,7 @@ { "cell_type": "code", "execution_count": null, - "id": "76cde242", + "id": "b6052d21", "metadata": { "deletable": true, "editable": true @@ -1054,10 +1001,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:07.986413Z", - "iopub.status.busy": "2023-11-22T04:15:07.986413Z", - "iopub.status.idle": "2023-11-22T04:15:11.352716Z", - "shell.execute_reply": "2023-11-22T04:15:11.351706Z" + "iopub.execute_input": "2023-11-22T04:35:34.401279Z", + "iopub.status.busy": "2023-11-22T04:35:34.401279Z", + "iopub.status.idle": "2023-11-22T04:35:38.755236Z", + "shell.execute_reply": "2023-11-22T04:35:38.755236Z" }, "tags": [] }, @@ -1075,7 +1022,7 @@ { "cell_type": "code", "execution_count": null, - "id": "2ffb5c2e", + "id": "34a0b6ef", "metadata": { "deletable": true, "editable": true @@ -1115,10 +1062,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:11.682804Z", - "iopub.status.busy": "2023-11-22T04:15:11.682804Z", - "iopub.status.idle": "2023-11-22T04:15:11.691290Z", - "shell.execute_reply": "2023-11-22T04:15:11.690281Z" + "iopub.execute_input": "2023-11-22T04:35:39.176507Z", + "iopub.status.busy": "2023-11-22T04:35:39.175506Z", + "iopub.status.idle": "2023-11-22T04:35:39.185038Z", + "shell.execute_reply": "2023-11-22T04:35:39.184027Z" }, "tags": [] }, @@ -1130,7 +1077,7 @@ { "cell_type": "code", "execution_count": null, - "id": "0ed616ec", + "id": "6103cbd5", "metadata": { "deletable": true, "editable": true @@ -1161,10 +1108,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:12.199060Z", - "iopub.status.busy": "2023-11-22T04:15:12.199060Z", - "iopub.status.idle": "2023-11-22T04:15:12.209294Z", - "shell.execute_reply": "2023-11-22T04:15:12.208262Z" + "iopub.execute_input": "2023-11-22T04:35:39.891809Z", + "iopub.status.busy": "2023-11-22T04:35:39.891809Z", + "iopub.status.idle": "2023-11-22T04:35:39.904269Z", + "shell.execute_reply": "2023-11-22T04:35:39.903258Z" }, "tags": [] }, @@ -1176,7 +1123,7 @@ { "cell_type": "code", "execution_count": null, - "id": "35feb01f", + "id": "f6cc13ae", "metadata": { "deletable": true, "editable": true @@ -1207,10 +1154,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:13.047381Z", - "iopub.status.busy": "2023-11-22T04:15:13.047381Z", - "iopub.status.idle": "2023-11-22T04:15:13.056519Z", - "shell.execute_reply": "2023-11-22T04:15:13.055489Z" + "iopub.execute_input": "2023-11-22T04:35:41.138687Z", + "iopub.status.busy": "2023-11-22T04:35:41.138687Z", + "iopub.status.idle": "2023-11-22T04:35:41.148105Z", + "shell.execute_reply": "2023-11-22T04:35:41.147085Z" }, "tags": [] }, @@ -1222,7 +1169,7 @@ { "cell_type": "code", "execution_count": null, - "id": "6699df46", + "id": "f4042b98", "metadata": { "deletable": true, "editable": true @@ -1253,10 +1200,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:13.631342Z", - "iopub.status.busy": "2023-11-22T04:15:13.631342Z", - "iopub.status.idle": "2023-11-22T04:15:13.640508Z", - "shell.execute_reply": "2023-11-22T04:15:13.639495Z" + "iopub.execute_input": "2023-11-22T04:35:41.941289Z", + "iopub.status.busy": "2023-11-22T04:35:41.941289Z", + "iopub.status.idle": "2023-11-22T04:35:41.954997Z", + "shell.execute_reply": "2023-11-22T04:35:41.953986Z" }, "tags": [] }, @@ -1268,7 +1215,7 @@ { "cell_type": "code", "execution_count": null, - "id": "6409880c", + "id": "c6cb8795", "metadata": { "deletable": true, "editable": true @@ -1309,10 +1256,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:14.315825Z", - "iopub.status.busy": "2023-11-22T04:15:14.315825Z", - "iopub.status.idle": "2023-11-22T04:15:14.325315Z", - "shell.execute_reply": "2023-11-22T04:15:14.324304Z" + "iopub.execute_input": "2023-11-22T04:35:42.900338Z", + "iopub.status.busy": "2023-11-22T04:35:42.900338Z", + "iopub.status.idle": "2023-11-22T04:35:42.910080Z", + "shell.execute_reply": "2023-11-22T04:35:42.909072Z" }, "tags": [] }, @@ -1324,7 +1271,7 @@ { "cell_type": "code", "execution_count": null, - "id": "c3f989a6", + "id": "3b474251", "metadata": { "deletable": true, "editable": true @@ -1369,10 +1316,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:14.992869Z", - "iopub.status.busy": "2023-11-22T04:15:14.992869Z", - "iopub.status.idle": "2023-11-22T04:15:15.002992Z", - "shell.execute_reply": "2023-11-22T04:15:15.001982Z" + "iopub.execute_input": "2023-11-22T04:35:44.013811Z", + "iopub.status.busy": "2023-11-22T04:35:44.013811Z", + "iopub.status.idle": "2023-11-22T04:35:44.027736Z", + "shell.execute_reply": "2023-11-22T04:35:44.026730Z" }, "tags": [] }, @@ -1384,7 +1331,7 @@ { "cell_type": "code", "execution_count": null, - "id": "13ca76a3", + "id": "2ccaf6a0", "metadata": { "deletable": true, "editable": true @@ -1440,10 +1387,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:15.675904Z", - "iopub.status.busy": "2023-11-22T04:15:15.675904Z", - "iopub.status.idle": "2023-11-22T04:15:15.682824Z", - "shell.execute_reply": "2023-11-22T04:15:15.681813Z" + "iopub.execute_input": "2023-11-22T04:35:44.944372Z", + "iopub.status.busy": "2023-11-22T04:35:44.944372Z", + "iopub.status.idle": "2023-11-22T04:35:44.952668Z", + "shell.execute_reply": "2023-11-22T04:35:44.951654Z" }, "tags": [] }, @@ -1462,10 +1409,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:15.685823Z", - "iopub.status.busy": "2023-11-22T04:15:15.685823Z", - "iopub.status.idle": "2023-11-22T04:15:15.692916Z", - "shell.execute_reply": "2023-11-22T04:15:15.691904Z" + "iopub.execute_input": "2023-11-22T04:35:44.956685Z", + "iopub.status.busy": "2023-11-22T04:35:44.956685Z", + "iopub.status.idle": "2023-11-22T04:35:44.964715Z", + "shell.execute_reply": "2023-11-22T04:35:44.963694Z" }, "tags": [] }, @@ -1484,10 +1431,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:15.695928Z", - "iopub.status.busy": "2023-11-22T04:15:15.695928Z", - "iopub.status.idle": "2023-11-22T04:15:15.702859Z", - "shell.execute_reply": "2023-11-22T04:15:15.701850Z" + "iopub.execute_input": "2023-11-22T04:35:44.969713Z", + "iopub.status.busy": "2023-11-22T04:35:44.968710Z", + "iopub.status.idle": "2023-11-22T04:35:44.977334Z", + "shell.execute_reply": "2023-11-22T04:35:44.976323Z" }, "tags": [] }, @@ -1534,10 +1481,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:15.706863Z", - "iopub.status.busy": "2023-11-22T04:15:15.706863Z", - "iopub.status.idle": "2023-11-22T04:15:16.630074Z", - "shell.execute_reply": "2023-11-22T04:15:16.629061Z" + "iopub.execute_input": "2023-11-22T04:35:44.982353Z", + "iopub.status.busy": "2023-11-22T04:35:44.982353Z", + "iopub.status.idle": "2023-11-22T04:35:46.009934Z", + "shell.execute_reply": "2023-11-22T04:35:46.008925Z" }, "tags": [] }, @@ -1549,7 +1496,7 @@ { "cell_type": "code", "execution_count": null, - "id": "19d24d38", + "id": "233bbc8c", "metadata": { "deletable": true, "editable": true @@ -1614,10 +1561,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:17.214156Z", - "iopub.status.busy": "2023-11-22T04:15:17.214156Z", - "iopub.status.idle": "2023-11-22T04:15:17.224987Z", - "shell.execute_reply": "2023-11-22T04:15:17.223739Z" + "iopub.execute_input": "2023-11-22T04:35:46.747729Z", + "iopub.status.busy": "2023-11-22T04:35:46.747729Z", + "iopub.status.idle": "2023-11-22T04:35:46.759256Z", + "shell.execute_reply": "2023-11-22T04:35:46.758247Z" }, "tags": [] }, @@ -1629,7 +1576,7 @@ { "cell_type": "code", "execution_count": null, - "id": "eec9fdfa", + "id": "440b844d", "metadata": { "deletable": true, "editable": true @@ -1660,10 +1607,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:17.886302Z", - "iopub.status.busy": "2023-11-22T04:15:17.886302Z", - "iopub.status.idle": "2023-11-22T04:15:18.993795Z", - "shell.execute_reply": "2023-11-22T04:15:18.992785Z" + "iopub.execute_input": "2023-11-22T04:35:47.541198Z", + "iopub.status.busy": "2023-11-22T04:35:47.540217Z", + "iopub.status.idle": "2023-11-22T04:35:48.946313Z", + "shell.execute_reply": "2023-11-22T04:35:48.945304Z" }, "tags": [] }, @@ -1675,7 +1622,7 @@ { "cell_type": "code", "execution_count": null, - "id": "b3af233e", + "id": "5e8f5e3d", "metadata": { "deletable": true, "editable": true @@ -1710,10 +1657,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:19.503602Z", - "iopub.status.busy": "2023-11-22T04:15:19.503602Z", - "iopub.status.idle": "2023-11-22T04:15:19.508952Z", - "shell.execute_reply": "2023-11-22T04:15:19.507939Z" + "iopub.execute_input": "2023-11-22T04:35:49.617554Z", + "iopub.status.busy": "2023-11-22T04:35:49.617554Z", + "iopub.status.idle": "2023-11-22T04:35:49.623586Z", + "shell.execute_reply": "2023-11-22T04:35:49.622573Z" }, "tags": [] }, @@ -1734,10 +1681,10 @@ "deletable": true, "editable": true, "execution": { - "iopub.execute_input": "2023-11-22T04:15:19.511953Z", - "iopub.status.busy": "2023-11-22T04:15:19.511953Z", - "iopub.status.idle": "2023-11-22T04:15:23.043559Z", - "shell.execute_reply": "2023-11-22T04:15:23.042529Z" + "iopub.execute_input": "2023-11-22T04:35:49.627584Z", + "iopub.status.busy": "2023-11-22T04:35:49.626581Z", + "iopub.status.idle": "2023-11-22T04:35:54.170277Z", + "shell.execute_reply": "2023-11-22T04:35:54.170277Z" }, "tags": [] }, @@ -1749,7 +1696,7 @@ { "cell_type": "code", "execution_count": null, - "id": "1267b7cd", + "id": "95950d8d", "metadata": { "deletable": true, "editable": true @@ -1762,7 +1709,7 @@ { "cell_type": "code", "execution_count": null, - "id": "b529ba3b", + "id": "5f6bb96e", "metadata": { "deletable": true, "editable": true @@ -1775,7 +1722,7 @@ { "cell_type": "code", "execution_count": null, - "id": "4f69e589", + "id": "a67986b2", "metadata": { "deletable": true, "editable": true @@ -1787,7 +1734,7 @@ }, { "cell_type": "markdown", - "id": "9f69c268", + "id": "cb276d87", "metadata": { "deletable": false, "editable": false @@ -1810,7 +1757,7 @@ { "cell_type": "code", "execution_count": null, - "id": "8fe0260f", + "id": "00eb4734", "metadata": { "cell_type": "code", "deletable": false, @@ -1826,7 +1773,7 @@ { "cell_type": "code", "execution_count": null, - "id": "434b7881", + "id": "d6983bf7", "metadata": { "cell_type": "code", "deletable": false, @@ -1840,7 +1787,7 @@ { "cell_type": "code", "execution_count": null, - "id": "275b9372", + "id": "4db8feec", "metadata": { "cell_type": "code", "deletable": false, @@ -1854,7 +1801,7 @@ }, { "cell_type": "markdown", - "id": "16224ce1", + "id": "f3eca485", "metadata": { "deletable": false, "editable": false -- GitLab