vlambda博客
学习文章列表

R语言笔记——直接从GITHUB安装R软件包




      本个专题将介绍R语言的一些基本技能和实用技巧。R中,您可以使用2-3行简单的代码直接从Github安装软件包。






以下功能



I步:安装并加载devtools软件包

install.packages("devtools")

library(devtools)

第二步:从GitHub安装软件包

install_github("tomasgreif/woe"






GitHub 




   注意:安装软件包时可能出现的错误。

   错误: loadNamespaceiclib.loc.libPaths()),versionCheck = vI [[i]])中的错误:没有名为'stringi'的软件包解决方案:  运行在运行 install_github命令 II之前,先执行 install.packages“ stringi” “

   错误:  curl ::curl_fetch_memoryurlhandle = handle)中的错误:已达到超时


   解决方案:

   步骤1.在下面的代码中更新代理的配置 -libraryhttr set_configuse_proxyurl =“ proxy.xxxx.comport = 80username =” 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软件包,则需要将Rtoolsdevtools软件包一起安装

      Rtools不是软件包,而是可执行文件。

 

  您可以从以下链接下载Rtools-https://cran.r-project.org/bin/windows/Rtools





install.packages('installr')install.Rtools()




ble

◆R语言笔记——在行上应用函数一