mtcars Explorer is a simple interactive Shiny app that lets users explore relationships in the famous mtcars dataset.
2026-03-29
mtcars Explorer is a simple interactive Shiny app that lets users explore relationships in the famous mtcars dataset.
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'
Try it here: [Your shinyapps.io link]
(Insert your deployed Shiny app URL)
Created on: 2026-03-29