readlines is used for . . . . . . . .
Select an option to see the answer and solution.
Which of the following R code extracts the second column for the following matrix?
> x <- matrix(1:6, 2, 3)
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- matrix(1:6, 2, 3)
> x[1, , drop = FALSE]
Select an option to see the answer and solution.
The . . . . . . . . operator allows you to string operations in a left-to-right fashion.
Select an option to see the answer and solution.
Point out the correct statement?
Select an option to see the answer and solution.
dplyr can be integrated with the . . . . . . . . package for large fast tables.
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- list(foo = 1:4, bar = 0.6, baz = "hello")
> name <- "foo"
> x$name
Select an option to see the answer and solution.
Point out the wrong statement?
Select an option to see the answer and solution.
. . . . . . . . extract a subset of rows from a dataframe based on logical conditions.
Select an option to see the answer and solution.
Which of the following statement would read file "foo.txt"?
Select an option to see the answer and solution.
Which of the following function gives the day of the week?
Select an option to see the answer and solution.
Point out the wrong statement?
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- as.POSIXct("2012-10-25 01:00:00")
> y <- as.POSIXct("2012-10-25 06:00:00", tz = "GMT")
> y-x
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- list(foo = 1:4, bar = 0.6, baz = "hello")
> name <- "foo"
> x[[name]]
Select an option to see the answer and solution.
What will be the output of the following R code?
> datestring <- c("January 10, 2012 10:40", "December 9, 2011 9:10")
> x <- strptime(datestring, "%B %d, %Y %H:%M")
> x
Select an option to see the answer and solution.
We can dump() R objects to a file by passing . . . . . . . .
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- 1:4
> y <- 6:9
> x/y
Select an option to see the answer and solution.
Point out the correct statement?
Select an option to see the answer and solution.
The dplyr package can be installed from CRAN using . . . . . . . .
Select an option to see the answer and solution.
Which of the following argument denotes if the file has a header line?
Select an option to see the answer and solution.