Many people want to explore data without knowing how to program.
The iris dataset is widely used in statistics and data science, but it usually requires knowledge of R to analyze it.
2026-01-13
Many people want to explore data without knowing how to program.
The iris dataset is widely used in statistics and data science, but it usually requires knowledge of R to analyze it.
The Iris Explorer application allows the user to:
All of this is done through a simple and reactive interface.
The app performs the following steps:
iris dataset based on the selected species# Load data data(iris) # Simulated user parameters species <- "setosa" threshold <- 1.5 # Data filtering df <- subset(iris, Species == species & Petal.Length >= threshold) # Results nrow(df)
## [1] 26
summary(df$Petal.Length)
## Min. 1st Qu. Median Mean 3rd Qu. Max. ## 1.500 1.500 1.550 1.588 1.600 1.900