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
|
\name{print.CaGalt}
\alias{print.CaGalt}
\title{Print the Correspondence Analysis on Generalised Aggregated Lexical Table (CaGalt) results}
\description{
Print the Correspondence Analysis on Generalised Aggregated Lexical Table (CaGalt) results
}
\usage{
## S3 method for class 'CaGalt'
\method{print}{CaGalt}(x, file = NULL, sep = ";", \ldots)
}
\arguments{
\item{x}{an object of class CaGalt}
\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{...}{further arguments passed to or from other methods}
}
\author{Belchin Kostov \email{badriyan@clinic.ub.es}, Monica Becue-Bertaut, Francois Husson}
\seealso{ \code{\link{CaGalt}}, \code{\link{write.infile}}}
\examples{
\dontrun{
data(health)
res.cagalt<-CaGalt(Y=health[,1:115],X=health[,116:118],type="n")
print(res.cagalt)
}
}
\keyword{multivariate}
|