cutArrayInCluLike: Cut 3-dim array in list of matrixes (or arrays) similar to...

View source: R/cutArrayInCluLike.R

cutArrayInCluLikeR Documentation

Cut 3-dim array in list of matrixes (or arrays) similar to organizing into clusters

Description

cutArrayInCluLike cuts 'dat' (matrix,data.frame or 3-dim array) in list (of appended lines) according to 'cluOrg', which serves as instruction which line of 'dat' should be placed in which list-element (like sorting according to cluster-numbers).

Usage

cutArrayInCluLike(dat, cluOrg, silent = FALSE, debug = FALSE, callFrom = NULL)

Arguments

dat

array (3 dim)

cluOrg

(factor) organization of lines to clusters

silent

(logical) suppress messages

debug

(logical) display additional messages for debugging

callFrom

(character) allow easier tracking of message(s) produced

Value

This function retruns a list of matrixes (or arrays)

Examples

mat1 <- matrix(1:30,nc=3,dimnames=list(letters[1:10],1:3))
cutArrayInCluLike(mat1,cluOrg=factor(c(2,rep(1:4,2),5)))

wrMisc documentation built on Nov. 17, 2023, 5:09 p.m.