nan2na {cmrutils}R Documentation

Helper Routine

Description

Replaces non-finite values with NAs in array-like objects.

Usage

nan2na(x)

Arguments

x

An array-like object.

Value

Returns x with non-finite values replaced with NAs.

See Also

is.finite, NA.

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]