R Programming Class Test

12345678910111213141516171819202122232425
Across
  1. 1. Individual R objects can be saved to a file using the _____ function.
  2. 4. Connections to text files can be created with the ________ function.
  3. 6. The _________ function can be used to select columns of a data frame that you want to focus on.
  4. 9. What will the following code print ? >x <- 0:6 >as.logical(x)
  5. 10. Numbers in R are generally treated as _______ precision real numbers.
  6. 11. The dplyr package can be installed from GitHub using the _______ package
  7. 12. Which of the following should be preferred for evaluation from list of alternatives ?
  8. 13. Attributes of an object (if any) can be accessed using the ______ function.
  9. 16. function similar to summarize
  10. 20. Collection of objects currently stored in R is called as :
  11. 21. The _________ R system contains, among other things, the base package which is required to run R and
  12. 22. They primary R system is available from the ______
  13. 24. _________ generate summary statistics of different variables in the data frame, possibly within strata
Down
  1. 1. [, [[ and $ operators
  2. 2. ________ opens a connection to a file compressed with gzip.
  3. 3. ________ add new variables/columns or transform existing variables
  4. 5. R objects can have attributes, which are like ________ for the object.
  5. 7. base package for R language
  6. 8. The entities that R creates and manipulates are known as ________
  7. 14. Elementary commands in R consist of either _______ or assignments.
  8. 15. ________ function is similar to the existing subset() function in R but is quite a bit faster.
  9. 17. _______ is used to break the execution of a loop.
  10. 18. What would be the output of the following code ? > x <- Sys.time() > class(x)
  11. 19. R functionality is divided into a number of ________
  12. 23. The most convenient way to use R is at a graphics workstation running a ________ system.
  13. 25. Data frames can be converted to a matrix by calling data._______