Vidyalelo
R Programming · Q49

Data Visualization with ggplot2

Programming · R Programming · question 49

Q49

Which of the following finds the maximum value in the vector x, exclude missing values?

A.
rm(x)
B.
max(x, na.rm=TRUE)
Answer
C.
all(x)
D.
x%in%y

Answer: Option B

Solution

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