Which Of The Following Code Drop The Ith And Jth Column #631
Which of the following code drop the ith and jth column?
This multiple choice question (MCQ) is related to the book/course gs gs110 R Language. It can also be found in gs gs110 Commands, Packages, Visualizing Data and Linear Regression - Commands - Quiz No.2.
Which of the following code drop the ith and jth column?
new <- old[-n,]
new <- old[,-n]
new <- old[,-c(i,j)]
new <- subset(old,logical)