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
|
\name{print.PCA}
\alias{print.PCA}
\title{Print the Principal Component Analysis (PCA) results}
\description{
Print the Principal Component Analysis (PCA) results.
}
\usage{
\method{print}{PCA}(x, file = NULL, sep = ";", \dots)
}
\arguments{
\item{x}{an object of class PCA}
\item{file}{A connection, or a character string naming the file to print to. If NULL (the default), the results are not printed in a file}
\item{sep}{character string to insert between the objects to print (if the argument file is not NULL}
\item{\dots}{further arguments passed to or from other methods}
}
\author{Jeremy Mazet, Francois Husson \email{francois.husson@institut-agro.fr}}
\seealso{ \code{\link{PCA}}, \code{\link{write.infile}}}
\examples{
\dontrun{
data(decathlon)
res.pca <- PCA(decathlon, quanti.sup = 11:12, quali.sup = 13)
print(res.pca, file="c:/essai.csv", sep = ";")
}
}
\keyword{print}
|