Removes NaN values from a series or array.
REMOVENA(series)
series |
- |
A series or array. |
W1: {3.5, 5.0, 6.7, nan, 4.0, 8.0}.
W1: {5, nan, nan, 1}
W2: removena(W1)
W2 == {5.0, 1.0}
See NAFILL to replace NaN values with neighboring values.
See SETNAVALUE to replace NaN values with a specified value.