How is a list created in R?
Select an option to see the answer and solution.
What does the R function median() compute?
Select an option to see the answer and solution.
How do you install a package in R from the CRAN repository using the install.packages() function?
Select an option to see the answer and solution.
In R, how do you access the help documentation for a specific function, e.g., mean()?
Select an option to see the answer and solution.
What does the lengths() function do in R?
Select an option to see the answer and solution.
How is a character string defined in R?
Select an option to see the answer and solution.
What does the R function table() do?
Select an option to see the answer and solution.
How is the data frame column Age selected in R?
Select an option to see the answer and solution.
What is the purpose of the search() function in R?
Select an option to see the answer and solution.
In R, how is the mean of a numeric vector calculated using the mean() function?
Select an option to see the answer and solution.
Which of the following is "Recommended" package in R?
Select an option to see the answer and solution.
What is the class defined by the following R code?
y<-c(2,”t”)
Select an option to see the answer and solution.
What will be the output of the following R code?
x <- c(3, 7, NA, 4, 7)
y <- c(5, NA, 1, 2, 2)
x + y
Select an option to see the answer and solution.
R is published under the . . . . . . . . General Public License version.
Select an option to see the answer and solution.
In 2004, . . . . . . . . purchased the S language from Lucent for $2 million.
Select an option to see the answer and solution.
What is the mode of 'a' in the following R code?
a <- c(1,” a”, FALSE)
Select an option to see the answer and solution.
. . . . . . . . provides a point-and-click interface to many basic statistic problems.
Select an option to see the answer and solution.
What will be the output of the following R function?
paste("Everybody", "is", “a” , "warrior")
Select an option to see the answer and solution.
How to install for a package and all of the other packages on which for depends?
Select an option to see the answer and solution.
. . . . . . . . function is used to watch for all available packages in library.
Select an option to see the answer and solution.