Data Visualization With Ggplot2 - Study Mode

[#91] Which of the following is one of the most important aspects of a good package?
Correct Answer

(C) Documentation

[#92] Which of the following code will drop the nth column?
Correct Answer

(A) new <- old[-n,]

[#93] Which of the following code drop the ith and jth column?
Correct Answer

(C) new <- old[,-c(i,j)]

[#94] Which of the following statement find cases with no missing values?
Correct Answer

(A) complete <- subset(data.df,complete.cases(data.df)

[#95] Which of the following statement is normal distribution?
Correct Answer

(A) dnorm(x, mean=0, sd=1, log = FALSE)