Which of the following finds the maximum value in the vector x
Answers
Answered by
2
Explanation:
Next »
This set of tricky R Programming questions and answers focuses on “Commands – 2”.
1. 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)
Similar questions