View source: R/S3_aggregations.R
| colVars | R Documentation |
Block-wise computation of column and row variances (Bessel's correction, n-1). Returns NaN for columns/rows with fewer than 2 observations, matching base R behaviour.
colVars(x, ...)
## S3 method for class 'HDF5Matrix'
colVars(
x,
paral = NULL,
wsize = NULL,
threads = NULL,
save_to = NULL,
overwrite = TRUE,
...
)
rowVars(x, ...)
## S3 method for class 'HDF5Matrix'
rowVars(
x,
paral = NULL,
wsize = NULL,
threads = NULL,
save_to = NULL,
overwrite = TRUE,
...
)
x |
An |
... |
Ignored. |
paral |
Logical or NULL. Enable OpenMP parallelisation. |
wsize |
Integer or NULL. Block size for HDF5 reads (NULL = auto). |
threads |
Integer or NULL. Number of OpenMP threads (NULL = auto). |
save_to |
Where to save the result (see Details). NULL returns a
plain R vector; a character string |
overwrite |
Logical. Overwrite an existing dataset at |
A numeric vector (when save_to = NULL) or an
HDF5Matrix handle to the persisted result.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.