- Modern R Programming Cookbook
- Jaynal Abedin
- 157字
- 2021-07-08 09:48:28
How it works…
In any of the commands to install a library, either install.packages(), install_github(), or biocLite(), first, it connects with the mirror server where the source code / binary-released version of the specified library is located. Then, it checks whether the dependent libraries are installed onto the computer or not. If the required dependent library is absent, then it will download and install those required libraries before installing the one you specified through the command. The command will also search for the location where the installed library will be stored. You can explicitly specify the location or you can use the default. The recommended approach is to specify a location and install all customized libraries into that folder.
To specify the installation location, you can use the lib= option within the function. Make sure you have created the folder that you are going to use as the destination folder. Here is an example:
install.packages("ggplot2", lib="c:/rPackages")
- ASP.NET Core:Cloud-ready,Enterprise Web Application Development
- Hands-On Machine Learning with scikit:learn and Scientific Python Toolkits
- Android和PHP開發最佳實踐(第2版)
- MongoDB for Java Developers
- Mastering RStudio:Develop,Communicate,and Collaborate with R
- C語言實驗指導及習題解析
- UI設計全書(全彩)
- INSTANT Silverlight 5 Animation
- JavaScript程序設計:基礎·PHP·XML
- Web Developer's Reference Guide
- 硬件產品設計與開發:從原型到交付
- Android Game Programming by Example
- 測試工程師Python開發實戰
- C++面向對象程序設計教程
- Learning Rust