This function labels values in a vector as a replacement string if they are smaller than a specified cutoff. The input can be numeric, and the function will return either a modified version of the input vector with small values replaced by a given label, or it will keep the original values otherwise.
Arguments
- var
A numeric vector. This represents the variable to be checked against the cutoff.
- cutoff
A numeric value representing the threshold. Values in
var
smaller than this value will be replaced.- replacement
A string or a numeric value. If the value in
var
is smaller than thecutoff
, this value will replace it. If a string is provided, it will replace the numeric values with the string. If a numeric value is provided, the replacement will also be numeric.