stat_unique: Remove duplicates.
Description
Remove duplicates.Usage
stat_unique(mapping = NULL, data = NULL, geom = "point",
position = "identity", ...)
Arguments
mapping
The aesthetic mapping, usually constructed with
aes
or aes_string
. Only needs to be set
at the layer level if you are overriding the plot defaults. data
A layer specific dataset - only needed if you want to override
the plot defaults.
geom
The geometric object to use display the data
position
The position adjustment to use for overlappling points
on this layer
...
other arguments passed on to layer
. This can
include aesthetics whose values you want to set, not map. See
layer
for more details. Aesthetics
[results=rd,stage=build]{ggplot2:::rd_aesthetics("stat", "unique")}
ggplot(mtcars, aes(vs, am)) + geom_point(alpha = 0.1)
ggplot(mtcars, aes(vs, am)) + geom_point(alpha = 0.1, stat="unique")