InterviewSolution
Saved Bookmarks
| 1. |
How to install for a package and all of the other packages on which for depends?(a) install.packages (for, depends = TRUE)(b) R.install.packages (“for”, depends = TRUE)(c) install.packages (“for”, depends = TRUE)(d) install (“for”, depends = FALSE)I got this question in an online quiz.My doubt stems from Basics topic in portion History, Overview and Getting Started of R Programming |
|
Answer» The correct OPTION is (c) install.packages (“for”, depends = TRUE) |
|