How to deal with NaN values?

Similar approach, but using java snippet (simple) Node
This will convert the NaN into a missing value, so you can better deal with it.

double doublecol =$mycolumn$;
if (Double.isNaN(doublecol)){return null;}
else{return doublecol;}
1 Like