File: stat_unique.rd

package info (click to toggle)
r-cran-ggplot2 0.8.9-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,084 kB
  • sloc: makefile: 3
file content (27 lines) | stat: -rw-r--r-- 994 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
\name{stat_unique}
\alias{stat_unique}
\alias{StatUnique}
\title{stat\_unique}
\description{Remove duplicates}
\details{
This page describes stat\_unique, see \code{\link{layer}} and \code{\link{qplot}} for how to create a complete plot from individual components.
}
\usage{stat_unique(mapping = NULL, data = NULL, geom = "point", position = "identity", 
    ...)}
\arguments{
 \item{mapping}{mapping between variables and aesthetics generated by aes}
 \item{data}{dataset used in this layer, if not specified uses plot dataset}
 \item{geom}{geometric used by this layer}
 \item{position}{position adjustment used by this layer}
 \item{...}{ignored }
}
\seealso{\itemize{
  \item \url{http://had.co.nz/ggplot2/stat_unique.html}
}}
\value{A \code{\link{layer}}}
\examples{\dontrun{
ggplot(mtcars, aes(x=vs, y=am)) + geom_point(colour="#00000010")
ggplot(mtcars, aes(x=vs, y=am)) + geom_point(colour="#00000010", stat="unique")
}}
\author{Hadley Wickham, \url{http://had.co.nz/}}
\keyword{hplot}