These functions can help when compressing vectors. They always compress their input (x) into a single element by various means.

compress_with_sum(x)

compress_with_or(x)

Arguments

x

The vector to compress

Value

The compressed element

Details

compress_with_sum computes the sum of the elements, doing its best to convert all input values to numeric values. compress_with_or returns 0 if all elements are FALSE, 0, NA or empty character values (""), and 1 otherwise.

Examples

rock::compress_with_sum(c(1, '1', 0));
#> [1] 2
rock::compress_with_or(c(1, '1', 0));
#> [1] 1
rock::compress_with_or(c(0, '', 0, FALSE));
#> [1] 0