Q. Which of the following code will drop the nth column? (A) new <- old[-n,] (B) new <- old[,-n] (C) new <- old[,-c(i,j)] (D) new <- subset(old,logical) ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) new <- old[-n,]