title: “Iris Data Explorer App Presentation” author: “Anshuman Pal” date: “2024-11-03” output: ioslides_presentation
This presentation provides an overview of the Iris Data Explorer Shiny application. This app allows users to interactively explore the famous Iris dataset by filtering data based on species and visualizing data trends.
The following provides a summary of the Iris dataset, which is displayed in the app.
```{r iris_summary, echo=TRUE} summary(iris) plot(iris\(Sepal.Length, iris\)Petal.Length, main = “Sepal Length vs. Petal Length”, xlab = “Sepal Length”, ylab = “Petal Length”, col = iris$Species)
app_presentation.Rmd in your RStudio
project.This structure will create a neat, five-slide presentation showcasing your Shiny app. Let me know if you’d like any additional help!