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 47 48 49 50
|
\name{pie.labels}
\alias{pie.labels}
\title{ Place labels on a pie chart }
\description{
Places labels on a pie chart
}
\usage{
pie.labels(x=0,y=0,angles,labels,radius=1.05,bg="white",border=TRUE,
minangle=NA,boxed=FALSE,explode=0,...)
}
\arguments{
\item{x,y}{x and y position of the center of the pie chart}
\item{angles}{A numeric vector representing angles in radians. This is
the return value of \samp{floating.pie}.}
\item{labels}{Text strings to label each sector.}
\item{radius}{The radius at which to place the labels in user units. The
default is 1.05.}
\item{bg}{The color of the rectangles on which the labels are displayed.}
\item{border}{Whether to draw borders around the rectangles.}
\item{minangle}{Minimum angle between labels.}
\item{boxed}{Whether to use \samp{text} or \samp{boxed.labels} to display
the labels.}
\item{explode}{How much the pie chart has been "exploded".}
\item{...}{Arguments passed to \samp{text} or \samp{boxed.labels}.}
}
\value{nil}
\details{
Labels may be placed within the pie (radius less than the pie radius),
on the edge or outside as in the examples below. If within the pie, it
is probably best to use \samp{boxed=TRUE}.
If some labels overlap, passing a value in radians for \samp{minangle}
may be used to spread them out.
}
\note{
Remember that \samp{x} and \samp{y} specify the center of the pie chart and
that the label positions are specified by angles and radii from that
center.
}
\author{Jim Lemon}
\seealso{\link{floating.pie}, \link{boxed.labels}, \link{spreadout}}
\examples{
pieval<-c(2,1,3,94)
plot(0,xlim=c(1.5,5),ylim=c(1,5),type="n",axes=FALSE,xlab="",ylab="")
box()
bisect.angles<-floating.pie(3,3,pieval,explode=c(0.1,0.2,0.3,0))
pie.labels(3,3,bisect.angles,c("two","one","three","ninety\nfour"),
minangle=0.2,,explode=c(0.1,0.2,0.3,0))
}
\keyword{misc}
|