From 8ed3b0680cb1e6990d110830f3ac7140fb8e683f Mon Sep 17 00:00:00 2001 From: vpollo Date: Mon, 22 Sep 2025 18:38:13 +0100 Subject: [PATCH 1/2] [EXTERNAL] fix(pandas): replace broken "Ultimate Pandas Resource" link with "Awesome Pandas" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks for catching this! The "Ultimate Pandas Resource" link was returning a 403 error. I’ve updated it to point to the actively maintained [Awesome Pandas](https://github.com/tommyod/awesome-pandas) resource instead. --- subjects/ai/pandas/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/ai/pandas/README.md b/subjects/ai/pandas/README.md index 477f3aa9f0..3386c7247b 100644 --- a/subjects/ai/pandas/README.md +++ b/subjects/ai/pandas/README.md @@ -168,7 +168,7 @@ For this exercise, use [this dataset](./data/iris.csv). ### Resources -- [The ultimate Pandas resource](https://bedford-computing.co.uk/learning/wp-content/uploads/2015/10/Python-for-Data-Analysis.pdf) +- [Awesome pandas](https://github.com/tommyod/awesome-pandas) - [Pandas documentation](https://pandas.pydata.org/docs/) From 4565a56171e708144965ee892ad9961d44373d97 Mon Sep 17 00:00:00 2001 From: vpollo Date: Mon, 6 Oct 2025 01:02:48 +0100 Subject: [PATCH 2/2] Update README.md --- subjects/ai/pandas/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/subjects/ai/pandas/README.md b/subjects/ai/pandas/README.md index 3386c7247b..44d7f6b28c 100644 --- a/subjects/ai/pandas/README.md +++ b/subjects/ai/pandas/README.md @@ -66,7 +66,6 @@ I recommend to use: The goal of this exercise is to learn to create basic Pandas objects. 1. Create a DataFrame as below this using two ways: - - From a NumPy array - From a Pandas Series