mirror of
https://github.com/harivansh-afk/ds1001_final.git
synced 2026-04-15 06:04:41 +00:00
fixed the github content
This commit is contained in:
parent
2756572346
commit
5914e183d0
1 changed files with 19 additions and 27 deletions
|
|
@ -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?"
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue