Vidyalelo
R Programming · Q63

Data Structures in R Programming

Programming · R Programming · question 63

Q63

Which of the following opens connection to gz-compressed text file?

A.
con <- gzfiles("words.gz")
B.
con <- gzfile("words.gz")
Answer
C.
con <- gzfile2("words.gz")
D.
con <- gzfiles2("words.gz")

Answer: Option B

Solution

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