gsloo: gsloo

View source: R/featuresel.R

gslooR Documentation

gsloo

Description

Ranking filter based on Gram Schmidt orthogonalization

Usage

gsloo(X, Y, nmax = ncol(X), trace = FALSE, automatic = F, class = F, shave = F)

Arguments

X:

input dataset

Y:

output dataset

nmax:

number of top returned features

Details

ranking by GS orthogonalization

Ranking filter based on Gram Schmidt orthogonalization

Value

Indices of nmax top ranked features

Author(s)

Gianluca Bontempi Gianluca.Bontempi@ulb.be

References

Handbook Statistical foundations of machine learning available in https://tinyurl.com/sfmlh

Examples

N<-100
n<-5
neff<-3
R<-regrDataset(N,n,neff,0.1,seed=0)
X<-R$X
Y<-R$Y
real.features<-R$feat
ranked.features<-gsloo(X,Y,nmax=3)

gbonte/gbcode documentation built on Feb. 27, 2024, 7:38 a.m.