Description Usage Arguments Examples
Load a bunch of packages
| 1 | 
| ... | List of packages | 
| verbose | logical. Whether or not to announce installations and package startup messages. | 
| 1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run: 
packages("glmnet")           # Can install from CRAN
packages("robertzk/Ramd")    # Can install from GitHub
packages("glmnet", "caret")  # can load multiple packages in one call
packages("robertzk/Ramd", "hadley/dplyr", "peterhurford/batchman")  # Can load multiple
packages("robertzk/Ramd", "glmnet")  # Can install from both CRAN and GitHub
packages("robertzk/Ramd@v0.3")      # Can load from versions
packages("robertzk/Ramd@0.3")
packages("robertzk/Ramd@fbe1aa0e36df289b27881d077635352e6debdbc1")  # Can load from refs
packages(list("FeiYeYe/xgboost", subdir = "R-package"))              # Can load from subdirectories
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.