1
0
mirror of https://github.com/gsi-upm/sitc synced 2025-07-05 04:12:20 +00:00

Update 2_2_Read_Data.ipynb

This commit is contained in:
Carlos A. Iglesias 2025-06-02 16:04:57 +03:00 committed by GitHub
parent b5f1a7dd22
commit ec02125396
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@
"\n", "\n",
"Scikit-learn comes with some bundled [datasets](https://scikit-learn.org/stable/datasets.html): iris, digits, boston, etc.\n", "Scikit-learn comes with some bundled [datasets](https://scikit-learn.org/stable/datasets.html): iris, digits, boston, etc.\n",
"\n", "\n",
"In this notebook, we are going to use the Iris dataset." "In this notebook, we will use the Iris dataset."
] ]
}, },
{ {
@ -180,7 +180,7 @@
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
"#Using numpy, I can print the dimensions (here we are working with 2D matrix)\n", "#Using numpy, I can print the dimensions (here we are working with a 2D matrix)\n",
"print(iris.data.ndim)" "print(iris.data.ndim)"
] ]
}, },