Which Of The Following Code Snippet Will Create A Vector With #224
Which of the following code snippet will create a vector with NAs in it?
This multiple choice question (MCQ) is related to the book/course gs gs110 R Language. It can also be found in gs gs110 Nuts and Bolts and Getting Data In and Out - Reading Datasets - Quiz No.1.
Which of the following code snippet will create a vector with NAs in it?
x >- c(1, 2, NA, 10, 3)
x >- cNA(1, 2, NA, 10, 3)
x >- NA(1, 2, NA, 10, 3)
x >- NA(1, 5, NA, 10, 8)