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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
\name{geom_pointrange}
\alias{geom_pointrange}
\alias{GeomPointrange}
\title{geom\_pointrange}
\description{An interval represented by a vertical line, with a point in the middle}
\details{
This page describes geom\_pointrange, see \code{\link{layer}} and \code{\link{qplot}} for how to create a complete plot from individual components.
}
\section{Aesthetics}{
The following aesthetics can be used with geom\_pointrange. Aesthetics are mapped to variables in the data with the aes function: \code{geom\_pointrange(aes(x = var))}
\itemize{
\item \code{x}: x position (\strong{required})
\item \code{y}: y position (\strong{required})
\item \code{ymin}: bottom (vertical minimum) (\strong{required})
\item \code{ymax}: top (vertical maximum) (\strong{required})
\item \code{colour}: border colour
\item \code{size}: size
\item \code{linetype}: line type
\item \code{shape}: shape of point
\item \code{fill}: internal colour
\item \code{alpha}: transparency
}
}
\usage{geom_pointrange(mapping = NULL, data = NULL, stat = "identity",
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{stat}{statistic used by this layer}
\item{position}{position adjustment used by this layer}
\item{...}{ignored }
}
\seealso{\itemize{
\item \code{\link{geom_errorbar}}: error bars
\item \code{\link{geom_linerange}}: range indicated by straight line, + examples
\item \code{\link{geom_crossbar}}: hollow bar with middle indicated by horizontal line
\item \code{\link{stat_summary}}: examples of these guys in use
\item \code{\link{geom_smooth}}: for continuous analog
\item \url{http://had.co.nz/ggplot2/geom_pointrange.html}
}}
\value{A \code{\link{layer}}}
\examples{\dontrun{
# See geom_linerange for examples
}}
\author{Hadley Wickham, \url{http://had.co.nz/}}
\keyword{hplot}
|