fixed the github content

This commit is contained in:
Brian Wright 2025-11-25 18:03:01 +00:00
parent 2756572346
commit 5914e183d0

View file

@ -63,12 +63,26 @@
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
"#Run the requirements file to load the required packages\n", "!pip install \"XX\"\n",
"!pip install -r requirements.txt\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", "#Are there additional packages to install? (Cross check with the list below to \n",
"# ensure all packages are installed)" "# 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", "cell_type": "code",
"execution_count": 1, "execution_count": 1,
@ -101,33 +115,10 @@
}, },
"outputs": [], "outputs": [],
"source": [ "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?" "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", "cell_type": "markdown",
"id": "7369da7c", "id": "7369da7c",
@ -143,7 +134,8 @@
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "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", "\n",
"# How many rows are in the dataframe? How many columns?" "# How many rows are in the dataframe? How many columns?"
] ]