Vidyalelo
R Programming · Q110

Data Structures in R Programming

Programming · R Programming · question 110

Q110

Which of the following statement would read file "foo.txt"?

A.
data <- read.table("foo.txt")
Answer
B.
read.data <- read.table("foo.txt")
C.
data <- read.data("foo.txt")
D.
data <- data("foo.txt")

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board