Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc0-1.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
## Dataset Summary
|
| 6 |
+
The Iris dataset is a well-known dataset in machine learning and statistics, first introduced by Ronald Fisher in 1936. It contains 150 observations of iris flowers, categorized into three species: setosa, versicolor, and virginica. Each observation has four numerical features representing the dimensions of the flowers.
|
| 7 |
+
|
| 8 |
+
## Usage
|
| 9 |
+
This dataset is commonly used for classification tasks, benchmarking machine learning algorithms, and educational purposes. It is available in the Scikit-learn library and other sources.
|
| 10 |
+
|
| 11 |
+
## Features
|
| 12 |
+
- **sepal_length** (*float32*): Length of the sepal in cm.
|
| 13 |
+
- **sepal_width** (*float32*): Width of the sepal in cm.
|
| 14 |
+
- **petal_length** (*float32*): Length of the petal in cm.
|
| 15 |
+
- **petal_width** (*float32*): Width of the petal in cm.
|
| 16 |
+
- **label** (*string*): Species of the iris flower (setosa, versicolor, virginica).
|
| 17 |
+
|
| 18 |
+
## Splits
|
| 19 |
+
The dataset consists of a single split with all 150 samples available for training.
|
| 20 |
+
|
| 21 |
+
## License
|
| 22 |
+
The Iris dataset is in the public domain and can be used freely under the CC0-1.0 license.
|
| 23 |
+
|
| 24 |
+
## Citation
|
| 25 |
+
If using this dataset, please cite the original source:
|
| 26 |
+
> Fisher, R.A. (1936). The use of multiple measurements in taxonomic problems. *Annals of Eugenics*, 7(2), 179-188.
|
| 27 |
+
|
| 28 |
+
## Source
|
| 29 |
+
- [UCI Machine Learning Repository](https://archive.ics.uci.edu/ml/datasets/iris)
|
| 30 |
+
- [Scikit-learn](https://scikit-learn.org/stable/auto_examples/datasets/plot_iris_dataset.html)
|