selectFeatures_IQR: Selection of features based on their IQR

View source: R/functions.R

selectFeatures_IQRR Documentation

Selection of features based on their IQR

Description

This function selects the features having the largest Inter Quartile Range (IQR).

Usage

  selectFeatures_IQR(data, nb)

Arguments

data

Measured data of dimension features x samples (e.g, gene expression data)

nb

The number of features to be selected

Value

A subset of data restricted to the features having the nb highest IQR value

Author(s)

Pierre Gestraud

Examples

dat <- matrix(rnorm(10000),ncol=10,nrow=1000)
rownames(dat) <- 1:1000
selectFeatures_IQR(data=dat, nb=500)

bitona/MineICA documentation built on April 23, 2023, 1:41 p.m.