Q. What will be the output of the following R code?
> x <- c(1, 2, NaN, NA, 4)
> is.na(x)
> x <- c(1, 2, NaN, NA, 4)
> is.na(x)
β
Correct Answer: (A)
FALSE FALSE TRUE TRUE FALSE
You must be Logged in to update hint/solution