The R6 rewrite handles thresholds as a boolean string statement so can be as complicated as required. The basic sytax looks something like 'pm$threshold = 'threshold1 > 0.5' but might be as complicated as pm$threshold = 'threshold1 > 0.5 & threshold1 <= 0.75 & ownership == 3'. Let's review...
The R6 rewrite handles thresholds as a boolean string statement so can be as complicated as required. The basic sytax looks something like
'pm$threshold = 'threshold1 > 0.5'
but might be as complicated aspm$threshold = 'threshold1 > 0.5 & threshold1 <= 0.75 & ownership == 3'
. Let's review...