Columns can be arranged in descending order too by using the special . . . . . . . . operator.
Select an option to see the answer and solution.
Point out the wrong statement?
Select an option to see the answer and solution.
Which of the following is used for reading tabular data?
> y <- data.frame(a = 1, b = "a")
> dput(y, file = "y.R")
> new.y <- dget("y.R")
> new.y
Select an option to see the answer and solution.
. . . . . . . . is used for outputting a textual representation of an R object.
Select an option to see the answer and solution.
Which of the following function is identical to read .table?
Select an option to see the answer and solution.
Point out the correct statement?
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- Sys.time()
> class(x)
Select an option to see the answer and solution.
. . . . . . . . function is similar to the existing subset() function in R but is quite a bit faster.
Select an option to see the answer and solution.
Which of the following is used for reading in saved workspaces?
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- 1:4
> x > 2
Select an option to see the answer and solution.
Which of the following function is similar to summarize?
Select an option to see the answer and solution.
The . . . . . . . . operator is used to connect multiple verb actions together into a pipeline.
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- as.Date("1970-01-01")
> x
Select an option to see the answer and solution.
. . . . . . . . add new variables/columns or transform existing variables.
Select an option to see the answer and solution.
Connections to text files can be created with the . . . . . . . . function.
Select an option to see the answer and solution.
.rda extension used when saving data with function . . . . . . . .
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- matrix(1:4, 2, 2)
> y <- matrix(rep(10, 4), 2, 2)
> x * y
Select an option to see the answer and solution.
Which of the following R code creates a connection to 'foo.txt'?
Select an option to see the answer and solution.
The dplyr package can be installed from GitHub using the . . . . . . . . package.
Select an option to see the answer and solution.
Point out the wrong statement?
Select an option to see the answer and solution.