2026-03-29

Pitch Overview

mtcars Explorer is a simple interactive Shiny app that lets users explore relationships in the famous mtcars dataset.

What Does the App Do?

  • Choose any two variables for a scatter plot (X and Y)
  • Color points by cylinders, transmission, etc.
  • Filter cars using a slider (number of cylinders)
  • Toggle a regression line on/off
ggplot(mtcars, aes(x = wt, y = mpg, color = factor(cyl))) +
  geom_point(size = 5) + geom_smooth(method = "lm", se = FALSE) +
  theme_minimal()
## `geom_smooth()` using formula = 'y ~ x'

Why This App?

  • Very intuitive for beginners
  • Demonstrates reactive programming in Shiny
  • Helps users discover insights (e.g., heavier cars have lower MPG)

Live Demo

Try it here: [Your shinyapps.io link]

(Insert your deployed Shiny app URL)

Thank You!

  • Source code on GitHub
  • Built with Shiny + ggplot2
  • Fully reproducible

Created on: 2026-03-29