Vidyalelo
R Programming · all questions

Data Manipulation with dplyr
practice.

Practice every MCQ with options. Use Show answers when you want the correct option and solution.

148

Questions

8/8

Page

Pick an option on a question to see the right answer and solution.

What is the role of exploratory graphs in data analysis?

Select an option to see the answer and solution.

. . . . . . . . evaluate the cumulative distribution function for a Normal distribution.

Select an option to see the answer and solution.

What will be the output of the following R code?
> set.seed(20)
> x <- rnorm(100)
> e <- rnorm(100, 0, 2)
> y <- 0.5 + 2 * x + e 
> summary(y)

Select an option to see the answer and solution.

. . . . . . . . describe the type of plot you will produce.

Select an option to see the answer and solution.

. . . . . . . . is used for translating between qplot and base graphics.

Select an option to see the answer and solution.

The elapsed time may be . . . . . . . . than the user time if your machine has multiple cores/processors.

Select an option to see the answer and solution.

. . . . . . . . ensures reproducibility of the sequence of random numbers.

Select an option to see the answer and solution.

. . . . . . . . is used to create a plot to illustrate patterns of missing values.

Select an option to see the answer and solution.