math.isNaN() function
math.isNaN()
reports whether f
is an IEEE 754 “not-a-number” value.
Function type signature
(f: float) => bool
Parameters
f
(Required) Value to operate on.
Examples
Check if a value is a NaN float value
import "math"
math.isNaN(f: 12.345)// false
Use math.isNaN in map
import "math"
data
|> map(fn: (r) => ({r with _value: math.isNaN(f: r._value)}))
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for Flux and this documentation. To find support, use the following resources:
Customers with an annual or support contract can contact InfluxData Support.