Remove NaN

Deleting NaN values in the list.

remove_nan(list[decimal]) -> list[decimal]

Returns list with dropped decimal(Nan)

Example:

remove_nan([0.2, 0.1, Nan])[0.2, 0.1]

Last updated