Aggregation of scores: sum up all individual scores
sum_scores(scores, na.rm = FALSE, ...)
scores
: A score or multiple component score vectorna.rm
: Boolean. Should NA values be ignored when obtaining the maximum? FALSE by default as ignoring NA values may render the sum meaningless....
: Parameters to be ignored by this aggregation functionThe aggregated score, i.e. the sum of all indicidual scores.
sum_scores(c(3, 2, 1))
Useful links