. . . . . . . . returns TRUE then X can be termed as a matrix data object.
Select an option to see the answer and solution.
. . . . . . . . package provides basic functionalities in R environment like arithmetic calculations, input/output.
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- 3
> switch(x, 2+2, mean(1:10), rnorm(5))
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- 1:4
> lapply(x, runif)
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- c("a", "b", "c", "d")
> for(i in 1:4) {
+ ## Print out each element of 'x'
+ print(x[i])
+ }
Select an option to see the answer and solution.
. . . . . . . . function gives an error message if the desired package cannot be loaded.
Select an option to see the answer and solution.
What will be the output of the following R code?
> x <- list(a = 1:5, b = rnorm(10))
> lapply(x, mean)
Select an option to see the answer and solution.
Which of the following R code syntax is syntactically valid?
Options are not available for this question.
Select an option to see the answer and solution.
. . . . . . . . function takes various parameters like formula, data, subset, labels, etc.
Select an option to see the answer and solution.
. . . . . . . . functions can be "built which contain all of the necessary data for evaluating the function.
Select an option to see the answer and solution.
How many types of data structures does R language have?
Select an option to see the answer and solution.
To get the current date, the . . . . . . . . function will return a Date object which can be converted to a different class if necessary.
Select an option to see the answer and solution.
A matrix of scatterplots can be produced using . . . . . . . . function.
Select an option to see the answer and solution.
Point out the correct statement?
Select an option to see the answer and solution.
. . . . . . . . suspends the execution of a function wherever it is called and puts the function in debug mode.
Select an option to see the answer and solution.
Two vectors M and N are defined as M <- c(3, 2, 4) and N <- c(1, 2). What will be the output of vector Z that is defined as Z <- M*N.
Select an option to see the answer and solution.
A programmer builds a . . . . . . . . to avoid repeating the same task or reduce complexity.
Select an option to see the answer and solution.
Point out the correct statement?
Select an option to see the answer and solution.
Which of the following is valid body of split function?
Select an option to see the answer and solution.
Which of the following is apply function in R?
Select an option to see the answer and solution.