Which of the following code snippet will create a vector with NAs in it?
Which of the following code snippet will create a vector with NAs in it? Correct Answer x >- c(1, 2, NA, 10, 3)
This returns a logical vector indicating which elements are NA.Which of the following code snippet will create a vector with NAs in it? Correct Answer x >- c(1, 2, NA, 10, 3)
This returns a logical vector indicating which elements are NA.