> startPoll
[1] 15.6
> endPoll
[1] 16.1
> threshold
[1] 0.5
> abs(startPoll - endPoll)
[1] 0.5
> abs(startPoll - endPoll) > threshold
[1] TRUE
> 0.5 > 0.5
[1] FALSE
Why is it that I am getting True for 0.5 > 0.5 when I am using
abs(startPoll - endPoll) > threshold
but when I use
0.5 > 0.5
I get the expected FALSE?