nan2na {cmrutils} | R Documentation |
Helper Routine
Description
Replaces non-finite values with NA
s in array-like objects.
Usage
nan2na(x)
Arguments
x |
An array-like object. |
Value
Returns x
with non-finite values replaced with NA
s.
See Also
Examples
nan2na(Inf)
nan2na(rep(c(0, -Inf, Inf), 3))
nan2na(matrix(c(0, Inf, -Inf, 0), 2, 2))
nan2na(array(c(0, -Inf, Inf, 1, NaN), dim = c(2, 3, 4)))
nan2na(ts(rep(c(0, -Inf, Inf), 2), frequency = 5))
[Package cmrutils version 1.3.1 Index]