kcca-class {kernlab} | R Documentation |
The "kcca" class
Objects can be created by calls of the form new("kcca", ...)
.
or by the calling the kcca
function.
kcor
:Object of class "vector"
describing the correlations
xcoef
:Object of class "matrix"
estimated coefficients for the x
variables
ycoef
:Object of class "matrix"
estimated coefficients for the y
variables
signature(object = "kcca")
: returns the correlations
signature(object = "kcca")
: returns the estimated coefficients for the x
variables
signature(object = "kcca")
: returns the estimated coefficients for the y
variables
Alexandros Karatzoglou
alexandros.karatzoglou@ci.tuwien.ac.at
## dummy data
x <- matrix(rnorm(30),15)
y <- matrix(rnorm(30),15)
kcca(x,y,ncomps=2)