Adjacent Values and Outliers
Upper and lower adjacent values can be calculated, and upper outer and lower outer fences that will define outlier values.

Adjacent values
IQR above is the interquartile range.
The upper adjacent value (UAV) is the largest observation that is less than or equal to the upper inner fence (UIF), which is the third quartile plus 1.5*IQR.
The lower adjacent value (LAV) is the smallest observation that is greater than or equal to the lower inner fence (LIF), which is the first quartile minus 1.5*IQR.
Outliers
Outliers are all values that fall outside either of the fences. Outside values are values that fall in between the inner and outer fences. Far out values are outside the outer fence.
The upper outer fence (UOF) is defined as the threshold located at Q3 + (3*IQR). The lower outer fence (LOF )is defined as the threshold located at Q1 - (3*IQR).
The outlier percentage is the count of outliers divided by the total count for each category.