Rev 9135 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{rug}\title{Add a Rug to a Plot}\alias{rug}\usage{rug(x, ticksize=0.03, side=1, lwd=0.5, col)}\arguments{\item{x}{A numeric vector}\item{ticksize}{The length of the ticks making up the `rug'. Positivelengths give inwards ticks.}\item{side}{On which side of the plot box the rug will beplotted. Normally 1 (bottom) or 3 (top).}\item{lwd}{The line width of the ticks.}\item{col}{The colour the ticks are plotted in, default is black.}}\description{Adds a \emph{rug} representation (1-d plot) of the data to the plot.}\details{Because of the way \code{rug} is implemented, only values of \code{x}that fall within the plot region are included. There will be awarning if any finite values are omitted, but non-finite values areomitted silently.Because of the way colours are done the axis itself is coloured thesame as the ticks. You can always replot the box in black if you don'tlike this feature.}\author{B. D. Ripley}\seealso{\code{\link{jitter}} which you may want for ties in \code{x}.}\examples{data(faithful)attach(faithful)plot(density(eruptions, bw=0.15))rug(eruptions)rug(jitter(eruptions, amount = .01), side = 3, col = "light blue")detach("faithful")}\keyword{hplot}