### ============================================================================
### colMedians
###
### ----------------------------------------------------------------------------
### Non-exported methods
###
.DelayedMatrix_block_colMedians <- function(x, rows = NULL, cols = NULL,
na.rm = FALSE, ..., useNames = TRUE) {
# Check input type
stopifnot(is(x, "DelayedMatrix"))
DelayedArray:::.get_ans_type(x, must.be.numeric = TRUE)
# Subset
x <- ..subset(x, rows, cols)
# Compute result
val <- colblock_APPLY(x = x,
FUN = colMedians,
na.rm = na.rm,
...,
useNames = useNames)
if (length(val) == 0L) {
return(numeric(ncol(x)))
}
unlist(val, recursive = FALSE, use.names = useNames)
}
### ----------------------------------------------------------------------------
### Exported methods
###
# ------------------------------------------------------------------------------
# General method
#
#' @inherit MatrixGenerics::colMedians
#' @importMethodsFrom DelayedArray seed
#' @rdname colMedians
#' @template common_params
#' @template lowercase_x
#' @export
#' @template example_dm_MatrixMatrix
#' @author Peter Hickey
#' @examples
#'
#' colMedians(dm_Matrix)
setMethod("colMedians", "DelayedMatrix",
function(x, rows = NULL, cols = NULL, na.rm = FALSE,
force_block_processing = FALSE, ..., useNames = TRUE) {
.smart_seed_dispatcher(x, generic = MatrixGenerics::colMedians,
blockfun = .DelayedMatrix_block_colMedians,
force_block_processing = force_block_processing,
rows = rows,
cols = cols,
na.rm = na.rm,
...,
useNames = useNames)
}
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.