Flag outliers based on Interquartile Range (IQR). Outliers are flagged if they are below Q1 - (mulitplier * IQR) or above Q3 + (multiplier * IQR).
iqr_bounds(x, multiplier = 1.5)A vector the same size as x, with TRUE for values that are outliers and FALSE otherwise
A numeric vector.
A numeric value to multiply the IQR by (default is 1.5).