1.

Which of the following code drop the ith and jth column?(a) new

Answer»

Correct ANSWER is (c) new <- OLD[,-c(i,j)]

The explanation: new <- subset(old,LOGICAL) SELECT those CASES that meet the logical condition.



Discussion

No Comment Found

Related InterviewSolutions