Source: UCI Machine Learning Repository
Original Dataset Link: https://archive.ics.uci.edu/dataset/53/iris
Original Data File Link: https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data
data set: Iris flower data set
file type: csv
Usage Rights / License: The Iris dataset is widely considered to be in the public domain and is freely available for research and educational purposes. No specific license restricts its use for academic projects.
+--------------------------------------------------+ | IrisRecord | +--------------------------------------------------+ | - sepalLengthCm : double | | - sepalWidthCm : double | | - petalLengthCm : double | | - petalWidthCm : double | | - species : String | +--------------------------------------------------+ | + IrisRecord(sepalLengthCm, sepalWidthCm, | | petalLengthCm, petalWidthCm, | | species) | | + getSepalLengthCm() : double | | + getSepalWidthCm() : double | | + getPetalLengthCm() : double | | + getPetalWidthCm() : double | | + getSpecies() : String | | + setSepalLengthCm(double) : void | | + setSepalWidthCm(double) : void | | + setPetalLengthCm(double) : void | | + setPetalWidthCm(double) : void | | + setSpecies(String) : void | | + toString() : String | +--------------------------------------------------+
sepal_length_cm : represents the sepals length in cm sepal_width_cm : represents the sepals width in cm petal_length_cm : represents the petal length in cm petal_width_cm : represents the petal width in cm species : represents the species of flower
analysis
Statistics for column 2: Minimum: 2.0 Maximum: 4.4 Average: 3.0540000000000007
the minimuim and maximum aren't too far apart
Statistics for column 3: Minimum: 1.0 Maximum: 6.9 Average: 3.7586666666666693
the minimum and maximum are farther apart than for column 2 but the average is similar