- Modern R Programming Cookbook
- Jaynal Abedin
- 52字
- 2021-07-08 09:48:28
Installing a library from GitHub
To install any library from GitHub, you can use the install_github() function from the devtools library. You just need to know the name of the library and the GitHub ID of the repository owner. See the following installation code for the dplyr library from GitHub:
library(devtools)
install_github("hadley/dplyr")
推薦閱讀
- 密碼學原理與Java實現
- C語言程序設計習題解析與上機指導(第4版)
- Arduino by Example
- 圖解Java數據結構與算法(微課視頻版)
- Reactive Programming with Swift
- Django:Web Development with Python
- 數據結構簡明教程(第2版)微課版
- 數據結構(Python語言描述)(第2版)
- 人人都懂設計模式:從生活中領悟設計模式(Python實現)
- PHP編程基礎與實例教程
- Building Serverless Architectures
- Hands-On Neural Network Programming with C#
- Learning Jakarta Struts 1.2: a concise and practical tutorial
- Sitecore Cookbook for Developers
- 循序漸進Vue.js 3前端開發實戰