iris
Awesome! The Iris dataset is a classic in machine learning. It contains 150 samples of iris flowers from three species:
Iris setosa
Iris versicolor
Iris virginica
Each sample includes 4 features (numerical measurements in cm):
Sepal length
Sepal width
Petal length
Petal width
It's often used for classification problems, especially to test algorithms like k-NN, SVM, decision trees, etc.
Would you like to load it in Python or explore some visualizations?
Answered By