Data Structures In R Programming - Study Mode
[#51] Which of the following object is masked from 'package: stats'?
Correct Answer
(A) filter
[#52] What will be the output of the following R code? > x <- list(aardvark = 1:5)
> x[["a", exact = FALSE]]
Correct Answer
(A) 1 2 3 4 5
[#53] . . . . . . . . generate summary statistics of different variables in the data frame, possibly within strata.
Correct Answer
(B) summarize
[#54] What will be the output of the following R code? > x <- list(aardvark = 1:5)
> x$a
Correct Answer
(A) 1 2 3 4 5
[#55] One way to pass data around is by de parsing the R object with . . . . . . . .
Correct Answer
(A) dput()