Jbob92
Mar 2025
User Inputs:
mtcars
, iris
).x
) and response (y
) variables.Server Processing:
library(ggplot2)
ggplot(mtcars, aes(x=hp, y=mpg)) + geom_point() + geom_smooth(method="lm", col="red")
Improvements:
View the full implementation at https://github.com/JBob92/ShinyApp_Regression.