bgreenwell / investr

Inverse estimation in R
22 stars 6 forks source link

Change anyNA(xx) to any(is.an(xx)) #5

Closed bgreenwell closed 9 years ago

bgreenwell commented 9 years ago

anyNA is not part of older versions of R.

bgreenwell commented 9 years ago

Solved by defining my own simpler version: AnyNA <- function(x) any(is.na(x))