Scatter plot with a smoothed line
Add a smoothed condition mean with a given scatter plot.
ggally_smooth( data, mapping, ..., method = "lm", formula = y ~ x, se = TRUE, shrink = TRUE ) ggally_smooth_loess(data, mapping, ...) ggally_smooth_lm(data, mapping, ...)
data |
data set using |
mapping |
aesthetics being used |
method, se |
parameters supplied to |
formula, ... |
other arguments to add to geom_smooth |
shrink |
boolean to determine if y range is reduced to range of points or points and error ribbon |
Y limits are reduced to match original Y range with the goal of keeping the Y axis the same across plots.
Barret Schloerke
# Small function to display plots only if it's interactive p_ <- GGally::print_if_interactive data(tips, package = "reshape") p_(ggally_smooth(tips, mapping = ggplot2::aes(x = total_bill, y = tip))) p_(ggally_smooth(tips, mapping = ggplot2::aes_string(x = "total_bill", y = "tip"))) p_(ggally_smooth(tips, mapping = ggplot2::aes_string(x = "total_bill", y = "tip", color = "sex")))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.