Iris Dataset Summary App

Author

Your Name

Published

June 1, 2024

Introduction

This Shiny application provides a summary and visualization of the Iris dataset.

Features

  • Select a species from the dropdown menu.
  • View the summary statistics of the selected species.
  • See a histogram of sepal lengths for the selected species.

Demonstration

# Sample output of the summary
summary(iris[iris$Species == "setosa", ])
  Sepal.Length    Sepal.Width     Petal.Length    Petal.Width   
 Min.   :4.300   Min.   :2.300   Min.   :1.000   Min.   :0.100  
 1st Qu.:4.800   1st Qu.:3.200   1st Qu.:1.400   1st Qu.:0.200  
 Median :5.000   Median :3.400   Median :1.500   Median :0.200  
 Mean   :5.006   Mean   :3.428   Mean   :1.462   Mean   :0.246  
 3rd Qu.:5.200   3rd Qu.:3.675   3rd Qu.:1.575   3rd Qu.:0.300  
 Max.   :5.800   Max.   :4.400   Max.   :1.900   Max.   :0.600  
       Species  
 setosa    :50  
 versicolor: 0  
 virginica : 0  
                
                
                

Conclusion

Visit the app at: https://azvasana.shinyapps.io/shiny_app/