Different Sepal sizes

Species have different sepal sizes

Rodrigo Bertollo de Alexandre
Learner

Course Project: Shiny Application and Reproducible Pitch

Different Species have different sepal sizes, and they seem to have a linear pattern between them. if you load the iris dataset

data(iris)
irisdataset <- iris

Plot 1

A plot of the Specie Virginica

plant <- "virginica"
data <- subset(irisdataset, iris$Species == plant)   

plot(data$Sepal.Length, data$Sepal.Width, main = "A plot of the Sepal size", xlab = "Sepal Length", ylab = "Sepal Width",  xaxt="n")

plot of chunk unnamed-chunk-2

Plot 2

A plot of the Specie Versicolor

plant <- "versicolor"
data <- subset(irisdataset, iris$Species == plant)   

plot(data$Sepal.Length, data$Sepal.Width, main = "A plot of the Sepal size", xlab = "Sepal Length", ylab = "Sepal Width",  xaxt="n")

plot of chunk unnamed-chunk-3

Plot 3

A plot of the Specie Setosa

plant <- "setosa"
data <- subset(irisdataset, iris$Species == plant)   

plot(data$Sepal.Length, data$Sepal.Width, main = "A plot of the Sepal size", xlab = "Sepal Length", ylab = "Sepal Width",  xaxt="n")

plot of chunk unnamed-chunk-4