Which Of The Following R Statement Will Save The Output To The #268
Which of the following R statement will save the output to the file for following R code?</p> <pre><code class="language-rsplus"> > a <- data.frame(x = rnorm(100), y = runif(100)) > b <- c(3, 4.4, 1 / 3) </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs110 R Language. It can also be found in gs gs110 R - Data Storage, Formats, Objects and Operations - Connection Interfaces - Quiz No.1.
Which of the following R statement will save the output to the file for following R code?
> a <- data.frame(x = rnorm(100), y = runif(100)) > b <- c(3, 4.4, 1 / 3)
save(a, b, file = "mydata.rda")
save_image(a, b, file = "mydata.rda")
keep(a, b, file = "mydata.rda")
keep_image(a, b, file = "mydata.rda")