occurance_matrix: Occurance matrix of data points in a list of biclusters

View source: R/RcppExports.R

occurance_matrixR Documentation

Occurance matrix of data points in a list of biclusters

Description

The function computes a matrix with the same dimensions as the input matrix and fills the matrix elements with the frequence of occurance of the data points in the input list of biclusters.

Usage

occurance_matrix(bics, mat)

Arguments

bics

A list of bicluster objects.

mat

The data matrix used for biclustering.

Value

A numeric matrix with the dimensions of the input matrix. The values represent the frequency of occurance of this point in the list of biclusters.

Examples

m <- matrix(seq(1:16), nrow=4)
# m <- matrix(rnorm(10000), nrow=100)
# bics <- c(run_fabia(m), run_isa(m), run_plaid(m))
# occurance_matrix(bics, m)


tdrose/mosbi documentation built on May 4, 2022, 3:22 p.m.