filter_network_cols {EGAD}R Documentation

Filter on columns

Description

The function filters out the columns of a matrix such that the size of the group is exclusively between given min and max values

Usage

filter_network_cols(network, min = 0, max = 1, ids = NA)

Arguments

network

numeric matrix

min

numeric value

max

numeric value

ids

array

Value

network numeric matrix

Examples

genes.labels <- matrix( sample( c(0,1), 10000, replace=TRUE), nrow=100)
rownames(genes.labels) = paste('gene', 1:100, sep='')
colnames(genes.labels) = paste('function', 1:100, sep='')
genes.labels <- filter_network_cols(genes.labels,50,200)

genes.labels <- matrix( sample( c(0,1), 10000, replace=TRUE), nrow=100)
rownames(genes.labels) = paste('gene', 1:100, sep='')
colnames(genes.labels) = paste('function', 1:100, sep='')
genes.labels <- filter_network_cols(genes.labels,ids = paste('function', 1:20, sep=''))



[Package EGAD version 1.20.0 Index]