R语言笔记——直接从GITHUB安装R软件包
Posted 生信客栈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了R语言笔记——直接从GITHUB安装R软件包相关的知识,希望对你有一定的参考价值。
本个专题将介绍R语言的一些基本技能和实用技巧。在R中,您可以使用2-3行简单的代码直接从Github安装软件包。
以下功能
执
行
操
作
第I步:安装并加载devtools软件包
install.packages("devtools")
library(devtools)
第二步:从GitHub安装软件包
install_github("tomasgreif/woe"
GitHub
注意:安装软件包时可能出现的错误。
错误: loadNamespace(i,c(lib.loc,.libPaths()),versionCheck = vI [[i]])中的错误:没有名为'stringi'的软件包解决方案: 运行在运行 install_github命令 II之前,先执行“ install.packages(“ stringi”) “。
错误: curl ::curl_fetch_memory(url,handle = handle)中的错误:已达到超时
解决方案:
步骤1.在下面的代码中更新代理的配置 -library(httr) set_config(use_proxy(url =“ proxy.xxxx.com) “,port = 80,username =” user“,password =” password“))
如何查找代理服务器设置:
Start>control panel>Network andInternet > click on Internet Options > click on connections tab thenright at the bottom click on LAN settings > Check Proxy Server Settings
步骤2. 运行此命令-install_github(“ tomasgreif / woe”)
重要说明
重要说明:如果要构建R软件包,则需要将Rtools与devtools软件包一起安装。
Rtools不是软件包,而是可执行文件。
您可以从以下链接下载Rtools-https://cran.r-project.org/bin/windows/Rtools
install.packages('installr')
install.Rtools()
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆
◆ble
◆
◆
◆R语言笔记——在行上应用函数一
◆
◆
以上是关于R语言笔记——直接从GITHUB安装R软件包的主要内容,如果未能解决你的问题,请参考以下文章