Plots the Scatter Plot with Smoothing

data(tips, package = "reshape")
 ggally_smooth(tips, mapping = ggplot2::aes(x = total_bill, y = tip))

plot of chunk ggally_smooth

ggally_smooth(tips, mapping = ggplot2::aes_string(x = "total_bill", y = "tip"))

plot of chunk ggally_smooth

ggally_smooth(tips, mapping = ggplot2::aes_string(x = "total_bill", y = "tip", color = "sex"))

plot of chunk ggally_smooth