Drop: Drop specified dimension from an array

Description Usage Arguments Value Examples

View source: R/GSEA-by-boot.R

Description

Like drop(x) but only dropping specified dimensions. There is no testing that the specified dimensions are actually singletons.

Usage

1
Drop(x, d)

Arguments

x

array of at least d dimensions

d

dimension(s) to drop

Value

array x

Examples

1
2
3
x = array(1:4, dim=c(1, 2, 1, 2))
dx = MAST:::Drop(x, 1)
stopifnot(all(dim(dx)==c(2,1,2)))

MAST documentation built on Nov. 8, 2020, 8:19 p.m.