Block-wise computation of column and row minimums.
colMins(x, ...)# S3 method for HDF5Matrix
colMins(
x,
paral = NULL,
wsize = NULL,
threads = NULL,
save_to = NULL,
overwrite = TRUE,
...
)
rowMins(x, ...)
# S3 method for HDF5Matrix
rowMins(
x,
paral = NULL,
wsize = NULL,
threads = NULL,
save_to = NULL,
overwrite = TRUE,
...
)
A numeric vector (when save_to = NULL) or an
HDF5Matrix handle to the persisted result.
An HDF5Matrix object.
Ignored.
Logical or NULL. Enable OpenMP parallelisation.
Integer or NULL. Block size for HDF5 reads (NULL = auto).
Integer or NULL. Number of OpenMP threads (NULL = auto).
Where to save the result (see Details). NULL returns a
plain R vector; a character string "group/dataset"
saves in the same file as x; a named list
list(file = "f.h5", path = "group/dataset") saves in
a different file. In both non-NULL cases an
HDF5Matrix handle is returned.
Logical. Overwrite an existing dataset at save_to?
(Currently always TRUE when save_to is not NULL.)