lkm: Kernel Matrix Using Linear Kernel

View source: R/lkm.R

lkmR Documentation

Kernel Matrix Using Linear Kernel

Description

The linear kernel is used by the underlying Euclidean space to define the similarity measure. Whenever the dimensionality is high, it may allow for more complexity in the function class than what we could measure and assess otherwise

Usage

lkm(X)

Arguments

X

a data matrix

Details

The linear kernel is used by the underlying Euclidean space to define the similarity measure. Whenever the dimensionality of the data is high, it may allow for more complexity in the function class than what we could measure and assess otherwise.

Value

K

a kernel matrix.

Author(s)

Md Ashad Alam <malam@tulane.edu>

References

Md. Ashad Alam, Hui-Yi Lin, HOng-Wen Deng, Vince Calhour Yu-Ping Wang (2018), A kernel machine method for detecting higher order interactions in multimodal datasets: Application to schizophrenia, Journal of Neuroscience Methods, Vol. 309, 161-174.

Md Ashad Alam, Kenji Fukumizu and Yu-Ping Wang (2018), Influence Function and Robust Variant of Kernel Canonical Correlation Analysis, Neurocomputing, Vol. 304 (2018) 12-29.

Md Ashad Alam, Vince D. Calhoun and Yu-Ping Wang (2018), Identifying outliers using multiple kernel canonical correlation analysis with application to imaging genetics, Computational Statistics and Data Analysis, Vol. 125, 70- 85

See Also

See also as gkm, ibskm

Examples

##Dummy data:

X <- matrix(rnorm(500),100)
lkm(X)

RKUM documentation built on June 22, 2022, 9:06 a.m.

Related to lkm in RKUM...