I am trying to write a formula similar to the one below but with the option to say if within 1 standard deviation above or below then well below average or well above average. I am able to successfully get the equation to say just above or below. But how do I get the standard deviation portion?
var youth= $feature.MINOR_PERCENT;
IIf(youth < Average($layer, 'MINOR_PERCENT'), 'below average', 'above average');