Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
# Dataset Card for Iris Dataset
|
| 6 |
+
|
| 7 |
+
## Dataset Summary
|
| 8 |
+
|
| 9 |
+
The Iris dataset is a classic multivariate dataset introduced by Ronald Fisher in 1936. It contains **150 samples** of iris flowers from three different species: *Iris setosa*, *Iris versicolor*, and *Iris virginica*. Each sample has four features: sepal length, sepal width, petal length, and petal width.
|
| 10 |
+
|
| 11 |
+
This dataset is widely used for **classification tasks**, especially in machine learning tutorials and benchmarks.
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
## Dataset Structure
|
| 16 |
+
|
| 17 |
+
- **Instances:** 150
|
| 18 |
+
- **Features:**
|
| 19 |
+
- `sepal_length` (float)
|
| 20 |
+
- `sepal_width` (float)
|
| 21 |
+
- `petal_length` (float)
|
| 22 |
+
- `petal_width` (float)
|
| 23 |
+
- `species` (label: 0 = setosa, 1 = versicolor, 2 = virginica)
|
| 24 |
+
|
| 25 |
+
---
|
| 26 |
+
|
| 27 |
+
## Labels
|
| 28 |
+
|
| 29 |
+
There are 3 classes:
|
| 30 |
+
- 0: *Iris setosa*
|
| 31 |
+
- 1: *Iris versicolor*
|
| 32 |
+
- 2: *Iris virginica*
|
| 33 |
+
|
| 34 |
+
---
|
| 35 |
+
|
| 36 |
+
## Source
|
| 37 |
+
|
| 38 |
+
Original source: [UCI Machine Learning Repository](https://archive.ics.uci.edu/ml/datasets/iris)
|
| 39 |
+
|
| 40 |
+
---
|
| 41 |
+
|
| 42 |
+
## License
|
| 43 |
+
|
| 44 |
+
Creative Commons Attribution 4.0 International (CC BY 4.0)
|
| 45 |
+
|
| 46 |
+
---
|
| 47 |
+
|
| 48 |
+
## Intended Use
|
| 49 |
+
|
| 50 |
+
This dataset is intended for:
|
| 51 |
+
- Educational purposes
|
| 52 |
+
- Model prototyping
|
| 53 |
+
- Benchmarking classification algorithms
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
+
## Limitations
|
| 58 |
+
|
| 59 |
+
- Small dataset: only 150 samples
|
| 60 |
+
- Balanced classes, not suitable for testing imbalanced techniques
|
| 61 |
+
|
| 62 |
+
---
|
| 63 |
+
|
| 64 |
+
## Example
|
| 65 |
+
|
| 66 |
+
| sepal_length | sepal_width | petal_length | petal_width | species |
|
| 67 |
+
|--------------|-------------|--------------|-------------|----------------|
|
| 68 |
+
| 5.1 | 3.5 | 1.4 | 0.2 | Iris-setosa |
|
| 69 |
+
|
| 70 |
+
---
|
| 71 |
+
|
| 72 |
+
## Citation
|
| 73 |
+
|
| 74 |
+
If you use this dataset, consider citing:
|
| 75 |
+
|
| 76 |
+
> Fisher, R.A. (1936) "The use of multiple measurements in taxonomic problems." Annals of Eugenics, 7, Part II, 179–188.
|