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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
\name{rose.diag}
\title{Rose Diagram}
\alias{rose.diag}
\description{
Creates a rose diagram of a circular data set on the current graphics device.}
\usage{rose.diag(x, pch = 16, cex = 1, axes = TRUE, shrink = 1,
bins = NULL, upper = TRUE, ticks = TRUE, tcl = 0.025, tcl.text = 0.125,
radii.scale = c("sqrt", "linear"), border=NULL, col=NULL, tol = 0.04,
uin = NULL, xlim = c(-1, 1), ylim = c(-1, 1), prop = 1, digits = 2,
plot.info = NULL, units = NULL, template = NULL, zero = NULL,
rotation = NULL, main = NULL, sub = NULL, xlab = "", ylab = "",
add = FALSE, control.circle = circle.control(), ...)
}
\arguments{
\item{x}{a vector, matrix or data.frame. The object is coerced to class \code{\link{circular}}.}
\item{pch}{point character to use. See help on \code{\link{par}}.}
\item{cex}{point character size. See help on \code{\link{par}}.}
\item{axes}{logical: if \code{TRUE} axes are plotted according to properties of \code{x}.}
\item{shrink}{parameter that controls the size of the plotted circle.
Default is 1. Larger values shrink the circle, while smaller values enlarge the circle.}
\item{bins}{number of arcs to partition the circle with.}
\item{upper}{therose diagram cells are "upper"-closed intervals.}
\item{ticks}{logical: if \code{TRUE} ticks are plotted according to the
value of \code{bins}.}
\item{tcl}{length of the ticks.}
\item{tcl.text}{the position of the axis labels.}
\item{radii.scale}{make possible to choose sector radius form:
square-root of relative frequency (\code{sqrt}, default) or
conventional linear scale (\code{linear}).}
\item{border}{the color to draw the border. The default, \code{NULL}, means to
use \code{par("fg")}. Use \code{border = NA} to omit borders.}
\item{col}{the color for filling the rose diagram. The default,
\code{NULL}, is to leave rose diagram unfilled.
color of the points. The values are recycled if needed.}
\item{tol}{proportion of white space at the margins of plot.}
\item{uin}{desired values for the units per inch parameter. If of length
1, the desired units per inch on the x axis.}
\item{xlim, ylim}{the ranges to be encompassed by the x and y
axes. Useful for centering the plot.}
\item{prop}{numerical constant determining the radii of the sectors. By default, prop = 1.}
\item{digits}{number of digits used to print axis values.}
\item{plot.info}{an object from \code{\link{plot.circular}} that
contains information on the \code{zero}, the \code{rotation} and \code{next.points}.}
\item{units}{the \code{units} used in the plot. If \code{NULL} the \code{units} of the first component of 'x' is used.}
\item{template}{the template of the plot. Ignored if \code{plot.info} is provided.}
\item{zero}{the zero of the plot. Ignored if \code{plot.info} or \code{template} are provided.}
\item{rotation}{the rotation of the plot. Ignored if \code{plot.info} or \code{template} are provided.}
\item{main, sub, xlab, ylab}{title, subtitle, x label and y label of the plot.}
\item{add}{add the rose diag to an existing plot.}
\item{control.circle}{parameters passed to \code{\link{plot.default}} in order to draw the circle. The function \code{\link{circle.control}} is used to set the parameters.}
\item{...}{further parameters passed to \code{\link{polygon}}.}
}
\value{
a list with information on the plot: zero, rotation and next.points.
}
\note{some codes from \code{\link[MASS]{eqscplot}} in MASS is used. Since
version 0.4-1 the meaning of the \code{col} parameter is changed.}
\details{
The circumference of the circle is split into groups, the number of groups specified by bins. For each group, a sector is drawn. The radii of the sectors are by default equal to the square root of the relative frequencies of observations in each group. This ensures that the area of the sector is proportional to the group frequency. The length of the radii can be controlled by varying the parameter prop. Since version 0.3-9 the intervals are on the form [a,b).
}
\author{Claudio Agostinelli, Ulric Lund and Hiroyoshi Arai}
\seealso{
\code{\link{plot.circular}}
}
\examples{
# Generate uniform data and create several rose diagrams.
# Some optional parameters may be needed to optimize plots.
x <- circular(runif(50, 0, 2*pi))
rose.diag(x, bins = 18, main = 'Uniform Data')
points(x)
# Generate von Mises data and create several rose diagrams.
x <- rvonmises(n=50, mu=circular(0), kappa=5, control.circular=list(zero=pi/4))
y <- rose.diag(x, bins=18) # Points fall out of bounds.
points(x, plot.info=y, stack=TRUE)
y <- rose.diag(x, bins=18, prop=1.5, shrink=1.5) # Adjust optional parameters to fit
######## all points on plot.
points(x, plot.info=y, stack=TRUE)
# Add the rose diag to a plot
plot(x)
rose.diag(x, bins=12, add=TRUE, col=2)
# Examples on using radii.scale and prop with a dummy dataset where
# highest proportion is 50\% in bin 2
x <- c(2, 2, 2, 2, 5, 5, 10, 20)
circ.x <- circular::circular(x, units = "hours", template = "clock24")
old_par <- par(mfrow = c(2, 2))
rose.diag(circ.x, bins=24, main="radii.scale=linear, prop=1",
radii.scale="linear", prop=1)
rose.diag(circ.x, bins=24, main = "radii.scale=linear, prop=2",
radii.scale="linear", prop=2)
rose.diag(circ.x, bins=24, main = "radii.scale=sqrt, prop=1",
radii.scale="sqrt", prop=1)
rose.diag(circ.x, bins=24, main = "radii.scale=sqrt, prop=sqrt(2)",
radii.scale="sqrt", prop=sqrt(2))
par(old_par)
}
\keyword{hplot}
|