From 5914e183d0aa4a4f2d808e1971d86b2d5ca7bb20 Mon Sep 17 00:00:00 2001 From: Brian Wright Date: Tue, 25 Nov 2025 18:03:01 +0000 Subject: [PATCH] fixed the github content --- .../notebooks/Final_Project_Notebook.ipynb | 46 ++++++++----------- 1 file changed, 19 insertions(+), 27 deletions(-) diff --git a/ds1001_final/notebooks/Final_Project_Notebook.ipynb b/ds1001_final/notebooks/Final_Project_Notebook.ipynb index 2509c7c..8d9b476 100644 --- a/ds1001_final/notebooks/Final_Project_Notebook.ipynb +++ b/ds1001_final/notebooks/Final_Project_Notebook.ipynb @@ -63,12 +63,26 @@ "metadata": {}, "outputs": [], "source": [ - "#Run the requirements file to load the required packages\n", - "!pip install -r requirements.txt\n", + "!pip install \"XX\"\n", + "\n", + "#You'll likely need to install mice and fairlearn packages manually\n", "#Are there additional packages to install? (Cross check with the list below to \n", "# ensure all packages are installed)" ] }, + { + "cell_type": "code", + "execution_count": null, + "id": "db255838", + "metadata": {}, + "outputs": [], + "source": [ + "### You can use this command to list all the packages in your environment\n", + "!pip list\n", + "#To list all packages with their latest available versions, you can use:\n", + "!pip list --outdated" + ] + }, { "cell_type": "code", "execution_count": 1, @@ -101,33 +115,10 @@ }, "outputs": [], "source": [ - "What version of scikit-learn is current in the working environment?\n", + "### What version of scikit-learn is current in the working environment?\n", "i.\tIs that the latest version or not?" ] }, - { - "cell_type": "code", - "execution_count": null, - "id": "6572ef74", - "metadata": {}, - "outputs": [], - "source": [ - "### You can use this command to list all the packages in your environment\n", - "!pip list\n", - "#To list all packages with their latest available versions, you can use:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "958994c2", - "metadata": {}, - "outputs": [], - "source": [ - "!pip list --outdated\n", - "#This will show you all installed packages that have newer versions available, displaying both the current version and the latest version." - ] - }, { "cell_type": "markdown", "id": "7369da7c", @@ -143,7 +134,8 @@ "metadata": {}, "outputs": [], "source": [ - "\"name your dataset\" = pd.read_csv('your_dataset.csv')\n", + "\"name your dataset\" = pd.read_csv('your_dataset.csv') # the data is the data folder, \n", + "#you'll need to use the correct path to the dataset. \n", "\n", "# How many rows are in the dataframe? How many columns?" ]