Knowledge Quiz: Loading Data

Note
  • Click the check-mark button to check your answer.
  • Click the question-mark button to see an explanation of the solution.

Which of the following expressions will read the space-delimited file "info.dat"?

  • Assume that all the necessary packages are already loaded.
  • Assume the working directory has the following structure.

  • INCORRECT: The file path is wrong.
  • CORRECT: read.table() is the correct Base R function. Here, we specify the space character as the delimiter.
  • INCORRECT: The file path is wrong.
  • CORRECT: read.table() is the correct Base R function.
  • INCORRECT: The file path is wrong.
Back to top