Calculates the standard deviation for each row (column) of a matrix-like object.
Usage
# S4 method for class 'dbDenseMatrix'
colSds(
x,
rows = NULL,
cols = NULL,
na.rm = FALSE,
center = NULL,
...,
useNames = TRUE
)
# S4 method for class 'dbSparseMatrix'
colSds(
x,
rows = NULL,
cols = NULL,
na.rm = FALSE,
center = NULL,
...,
useNames = TRUE
)
# S4 method for class 'dbDenseMatrix'
rowSds(
x,
rows = NULL,
cols = NULL,
na.rm = FALSE,
center = NULL,
...,
useNames = TRUE
)
# S4 method for class 'dbSparseMatrix'
rowSds(
x,
rows = NULL,
cols = NULL,
na.rm = FALSE,
center = NULL,
...,
useNames = TRUE
)
Arguments
- x
An NxK matrix-like object.
- rows, cols
Always NULL for dbMatrix queries. Included for compatibility with the generic.
- na.rm
Always TRUE for dbMatrix queries. Included for compatibility with the generic.
- center
Always NULL for dbMatrix queries. Included for compatibility with the generic.
- ...
Additional arguments passed to specific methods.
- useNames
Always TRUE for dbMatrix queries. Included for compatibility with the generic.
- dim
Always NULL for dbMatrix queries. Included for compatibility with the generic.