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 = TRUE,
center = NULL,
...,
useNames = TRUE
)
# S4 method for class 'dbSparseMatrix'
rowSds(
x,
rows = NULL,
cols = NULL,
na.rm = TRUE,
center = NULL,
...,
useNames = TRUE
)Arguments
- x
A
dbMatrixobject.- rows
Always NULL for
dbMatrixqueries. TODO- cols
Always NULL for
dbMatrixqueries. TODO- na.rm
Always TRUE for
dbMatrixqueries. Included for compatibility with the generic.- center
Always NULL for
dbMatrixqueries. Included for compatibility with the generic.- ...
Additional arguments (not used, but included for compatibility with the generic).
- useNames
Always TRUE for
dbMatrixqueries. Included for compatibility with the generic.