ggally_smooth {GGally}R Documentation

Plots the Scatter Plot with Smoothing

Description

Add a smoothed condition mean with a given scatter plot.

Usage

ggally_smooth(data, mapping, ...)

Arguments

data

data set using

mapping

aesthetics being used

...

other arguments to add to geom_point

Author(s)

Barret Schloerke schloerke@gmail.com

Examples

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

[Package GGally version 0.5.0 Index]