rankrho: rankrho

View source: R/featuresel.R

rankrhoR Documentation

rankrho

Description

Ranking filter based on mutual information

Usage

rankrho(X, Y, nmax = 5, regr = FALSE)

Arguments

X:

input dataset

Y:

output dataset

nmax:

number of top returned features

Details

ranking

Ranking filter based on mutaul information

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/sfmlhf

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<-rankrho(X,Y,nmax=3)

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