Iris Flower Species Classification Dataset
Dataset for visualizing lengths of different iris flowers
@kaggle.afnansaifafnan_iris_flower_species_classification_dataset
Dataset for visualizing lengths of different iris flowers
@kaggle.afnansaifafnan_iris_flower_species_classification_dataset
The Iris dataset contains measurements of three iris flower species i.e., Setosa, Versicolor, and Virginica. It includes four numerical features: sepal length, sepal width, petal length, and petal width (in centimeters). The goal is to analyze and classify flowers based on these measurements. It is widely used for testing data visualization, pattern recognition, and machine learning models.
CREATE TABLE iris (
"id" BIGINT,
"sepallengthcm" DOUBLE,
"sepalwidthcm" DOUBLE,
"petallengthcm" DOUBLE,
"petalwidthcm" DOUBLE,
"species" VARCHAR
);
Anyone who has the link will be able to view this.