This function computes a summary score from an input vector or from each column vector of an input matrix.
Arguments
- x
(named) numerical vector or matrix
- i
(optional) numerical vector giving the (row) position in
x
or character vector matching the (row) names inx
. Ifmissing
ori = NULL
, the entirex
is considered for the computation of the score- w
numerical vector of weights the same length as
nrow(x)
. It is used for the computation of the weighted scores- na.rm
logical, whether to remove
NA
values fromx
before computation- score
character string indicating the summary score to compute
- ...
further arguments to
score
- transform.fun
function to transform the data. If provided,
x
is transformed (x = transform.fun(x, transform.args)
) before the computation of the scores. SeegetDataTransformer
for further details about built-in options- transform.args
list of parameters to the data transformation function
- transform.sub
logical, whether to transform
x
after it is subset fori
(used to speedup computation). Default isFALSE
, meaning the transformation would be applied directly tox
provided in input
Value
A numerical value representing the computed score.
A default NA
value is returned if the score can't be
computed, or if i
values are not present in x
.