Iris Dataset
"Exploring Patterns: The Iris Dataset Analysis"
@kaggle.sakshisatre_iris_dataset
"Exploring Patterns: The Iris Dataset Analysis"
@kaggle.sakshisatre_iris_dataset
"Exploring Patterns: The Iris Dataset Analysis"
The Iris dataset is a classic dataset in the field of machine learning and statistics.
It was introduced by the British statistician and biologist Ronald Fisher in his 1936 paper "The use of multiple measurements in taxonomic problems" as an example of linear discriminant analysis.
The dataset consists of 150 samples of iris flowers, each belonging to one of three species: Setosa, Versicolor, and Virginica.
These columns provide measurements of various parts of the iris flower, along with the corresponding species labels, making it a versatile dataset for analysis and classification tasks.
CREATE TABLE iris_dataset (
"sepal_length" DOUBLE,
"sepal_width" DOUBLE,
"petal_length" DOUBLE,
"petal_width" DOUBLE,
"species" VARCHAR
);Anyone who has the link will be able to view this.