Baselight

Iris Species

Classify iris plants into three species in this classic dataset

@kaggle.uciml_iris

Iris
@kaggle.uciml_iris.iris

  • 6.55 KB
  • 150 rows
  • 6 columns
id

Id

sepallengthcm

SepalLengthCm

sepalwidthcm

SepalWidthCm

petallengthcm

PetalLengthCm

petalwidthcm

PetalWidthCm

species

Species

15.13.51.40.2Iris-setosa
24.931.40.2Iris-setosa
34.73.21.30.2Iris-setosa
44.63.11.50.2Iris-setosa
553.61.40.2Iris-setosa
65.43.91.70.4Iris-setosa
74.63.41.40.3Iris-setosa
853.41.50.2Iris-setosa
94.42.91.40.2Iris-setosa
104.93.11.50.1Iris-setosa

CREATE TABLE iris (
  "id" BIGINT,
  "sepallengthcm" DOUBLE,
  "sepalwidthcm" DOUBLE,
  "petallengthcm" DOUBLE,
  "petalwidthcm" DOUBLE,
  "species" VARCHAR
);

Share link

Anyone who has the link will be able to view this.