1.

Main way to read the data back in (parsing it) using the function.(a) dput()(b) write()(c) read()(d) dget()I got this question during an interview.Asked question is from Textual Data Formats topic in section R – Data Storage, Formats, Objects and Operations of R Programming

Answer»

Right OPTION is (d) dget()

Easy explanation: One WAY to pass data around is by deparsing the R object with dput() and reading it BACK in (parsing it) using dget(). dget is used for reading in R code FILES (INVERSE of dput).



Discussion

No Comment Found

Related InterviewSolutions