kpls | R Documentation |
KPCA (Scholkopf et al. 1997, Scholkopf & Smola 2002, Tipping 2001) or KPLS (Rosipal & Trejo 2001).
The kernel Gram matrices K
are internally centered before the analyses, but the data are not column-wise scaled (there is no argument scale
in the function). If needed, the user has to do the scaling before using the function.
Row observations can eventually be weighted with a priori weights (using argument weights
).
Note: These kernel algorithms are time expensive when n > 500
, especially KPLS due to the iterative deflation of the n x n
training Gram matrix K
. A much faster alternative is to run "direct" kernel models, i.e. build preliminary kernel Gram matrices such as doing a pre-processing on X
(e.g. Bennett & Embrechts 2003) and then run usual algorithms on them. See examples in function kgram
.
kpca(Xr, Xu = NULL, ncomp, kern = kpol, weights = NULL, ...)
kpls(Xr, Yr, Xu = NULL, ncomp, kern = kpol, weights = NULL, ...)
Xr |
A |
Yr |
For |
Xu |
A |
ncomp |
The number of PCA scores (i.e. components) to be calculated. |
kern |
A function defining the considered kernel (Default to |
weights |
A vector of length |
... |
Optionnal arguments to pass in the kernel function defined in |
A list of outputs (see examples), such as:
Tr |
The training score matrix in the feature space ( |
Tu |
The test score matrix in the feature space ( |
explvar |
For |
Bennett, K.P., Embrechts, M.J., 2003. An optimization perspective on kernel partial least squares regression, in: Advances in Learning Theory: Methods, Models and Applications, NATO Science Series III: Computer & Systems Sciences. IOS Press Amsterdam, pp. 227-250.
Rosipal, R., Trejo, L.J., 2001. Kernel Partial Least Squares Regression in Reproducing Kernel Hilbert Space. Journal of Machine Learning Research 2, 97-123.
Scholkopf, B., Smola, A., Müller, K.-R., 1997. Kernel principal component analysis, in: Gerstner, W., Germond, A., Hasler, M., Nicoud, J.-D. (Eds.), Artificial Neural Networks â ICANN 97, Lecture Notes in Computer Science. Springer, Berlin, Heidelberg, pp. 583-588. https://doi.org/10.1007/BFb0020217
Scholkopf, B., Smola, A.J., 2002. Learning with kernels: support vector machines, regularization, optimization, and beyond, Adaptive computation and machine learning. MIT Press, Cambridge, Mass.
Tipping, M.E., 2001. Sparse kernel principal component analysis. Advances in neural information processing systems, MIT Press. http://papers.nips.cc/paper/1791-sparse-kernel-principal-component-analysis.pdf
n <- 8
p <- 3
set.seed(1)
X <- matrix(rnorm(n * p, mean = 10), ncol = p)
y1 <- 100 * rnorm(n)
y2 <- 100 * rnorm(n)
Y <- cbind(y1, y2)
Xu <- X[1:2, ]
set.seed(NULL)
ncomp <- 4
kpls(X, Y, Xu, ncomp = ncomp, degree = 2)
kpca(X, ncomp = ncomp, kern = krbf, sigma = .5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.