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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
\name{kcca-class}
\docType{class}
\alias{kcca-class}
\alias{kcor}
\alias{xcoef}
\alias{ycoef}
%%\alias{yvar}
%%\alias{xvar}
\alias{kcor,kcca-method}
\alias{xcoef,kcca-method}
\alias{xvar,kcca-method}
\alias{ycoef,kcca-method}
\alias{yvar,kcca-method}
\title{Class "kcca"}
\description{The "kcca" class }
\section{Objects from the Class}{
Objects can be created by calls of the form \code{new("kcca", ...)}.
or by the calling the \code{kcca} function.
}
\section{Slots}{
\describe{
\item{\code{kcor}:}{Object of class \code{"vector"} describing the correlations}
\item{\code{xcoef}:}{Object of class \code{"matrix"} estimated coefficients for the \code{x} variables}
\item{\code{ycoef}:}{Object of class \code{"matrix"} estimated coefficients for the \code{y} variables }
%% \item{\code{xvar}:}{Object of class \code{"matrix"} holds the
%% canonical variates for \code{x}}
%% \item{\code{yvar}:}{Object of class \code{"matrix"} holds the
%% canonical variates for \code{y}}
}
}
\section{Methods}{
\describe{
\item{kcor}{\code{signature(object = "kcca")}: returns the correlations}
\item{xcoef}{\code{signature(object = "kcca")}: returns the estimated coefficients for the \code{x} variables}
\item{ycoef}{\code{signature(object = "kcca")}: returns the estimated coefficients for the \code{y} variables }
%% \item{xvar}{\code{signature(object = "kcca")}: returns the canonical
%% variates for \code{x}}
%% \item{yvar}{\code{signature(object = "kcca")}: returns the canonical
%% variates for \code{y}}
}
}
\author{Alexandros Karatzoglou \cr
\email{alexandros.karatzoglou@ci.tuwien.ac.at}}
\seealso{
\code{\link{kcca}},
\code{\link{kpca-class}}
}
\examples{
## dummy data
x <- matrix(rnorm(30),15)
y <- matrix(rnorm(30),15)
kcca(x,y,ncomps=2)
}
\keyword{classes}
|