I've got a function which is returning a Float.(average) Then I get that output and compare it within another function
| average == 0 = "0"
| average >= 0 = (show average)
But when the average is NaN I can't do this comparing cause NaN seems to be /=0. How can I compare a NaN value?