Google News
logo
R - Quiz(MCQ)
Which of the following statement will load the objects to the file named "mydata.RData"?
A)
put(“mydata.RData”)
B)
load(“mydata.RData”)
C)
save(“mydata.RData”)
D)
loadAll(“mydata.RData”)

Correct Answer :   load(“mydata.RData”)


Explanation : .rda and .RData are fairly common extensions and you may want to use them because they are recognized by other software

Advertisement