Vidyalelo
R Programming · Q55

Data Visualization with ggplot2

Programming · R Programming · question 55

Q55

which of the following statement tells the row with the minimum value for every column?

A.
which.min(x)
Answer
B.
which.max(x)
C.
z=apply(x,1,which.min)
D.
z=apply(1,1,which.max)

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board