Rev 47262 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/graphics/man/stem.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{stem}\title{Stem-and-Leaf Plots}\usage{stem(x, scale = 1, width = 80, atom = 1e-08)}\alias{stem}\description{\code{stem} produces a stem-and-leaf plot of the values in \code{x}.The parameter \code{scale} can be used to expand the scale of theplot. A value of \code{scale=2} will cause the plot to be roughlytwice as long as the default.}\arguments{\item{x}{a numeric vector.}\item{scale}{This controls the plot length.}\item{width}{The desired width of plot.}\item{atom}{a tolerance.}}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth & Brooks/Cole.}\examples{stem(islands)stem(log10(islands))}\keyword{univar}\keyword{distribution}