Rev 42333 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/stats/man/biplot.princomp.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{biplot.princomp}\alias{biplot.princomp}\alias{biplot.prcomp}\title{Biplot for Principal Components}\description{Produces a biplot (in the strict sense) from the output of\code{\link{princomp}} or \code{\link{prcomp}}}\usage{\method{biplot}{prcomp}(x, choices = 1:2, scale = 1, pc.biplot = FALSE, \dots)\method{biplot}{princomp}(x, choices = 1:2, scale = 1, pc.biplot = FALSE, \dots)}\arguments{\item{x}{an object of class \code{"princomp"}.}\item{choices}{length 2 vector specifying the components to plot. Only the defaultis a biplot in the strict sense.}\item{scale}{The variables are scaled by \code{lambda ^ scale} and theobservations are scaled by \code{lambda ^ (1-scale)} where\code{lambda} are the singular values as computed by\code{\link{princomp}}. Normally \code{0 <= scale <= 1}, and a warningwill be issued if the specified \code{scale} is outside this range.}\item{pc.biplot}{If true, use what Gabriel (1971) refers to as a "principal componentbiplot", with \code{lambda = 1} and observations scaled up by sqrt(n) andvariables scaled down by sqrt(n). Then inner products betweenvariables approximate covariances and distances between observationsapproximate Mahalanobis distance.}\item{\dots}{optional arguments to be passed to\code{\link{biplot.default}}.}}\section{Side Effects}{a plot is produced on the current graphics device.}\details{This is a method for the generic function \code{biplot}. There isconsiderable confusion over the precise definitions: those of theoriginal paper, Gabriel (1971), are followed here. Gabriel andOdoroff (1990) use the same definitions, but their plots actuallycorrespond to \code{pc.biplot = TRUE}.}\references{Gabriel, K. R. (1971).The biplot graphical display of matrices with applications toprincipal component analysis.\emph{Biometrika}, \bold{58}, 453--467.Gabriel, K. R. and Odoroff, C. L. (1990).Biplots in biomedical research.\emph{Statistics in Medicine}, \bold{9}, 469--485.}\seealso{\code{\link{biplot}},\code{\link{princomp}}.}\examples{require(graphics)biplot(princomp(USArrests))}\keyword{multivariate}\keyword{hplot}