Q96
Which of the following R statement will save the output to the file for following R code? > a b <- c(3, 4.4, 1 / 3)
A.
save(a, b, file = "mydata.rda")
AnswerB.
save_image(a, b, file = "mydata.rda")
C.
keep(a, b, file = "mydata.rda")
D.
keep_image(a, b, file = "mydata.rda")
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board