使用 R 进行 plotly 安装

plotly installation with R

我想在 R 中安装 plotly 包,来自 github

library(devtools)
install_github("ropensci/plotly")

我有一条错误消息:

Downloading github repo ropensci/plotly@master
Error in function (type, msg, asError = TRUE)  : couldn't connect to host

我在网上查了一下,发现是代理的问题,试过:

set_config(
use_proxy(url="https://github.com/ropensci/plotly", port=8080, username="***",password="***")
)

但仍然有同样的问题,我不知道要在 url 和端口值中输入什么,我在 Githup 和 plotly

上有两个帐户

感谢您的帮助

如果您的网络(可能是雇主)在其周边使用代理服务器,这只是代理问题。

如果它真的是一个代理,问题是你必须使用不同的方法来设置代理以进行绘图操作,因为它使用 curlPerform 来自 RCurl直接。像这样:

opts <- list(
  proxy         = "YOUR_PROXY_HTTP_URL",
  proxyusername = "YOUR_PROXY_USERNAME", 
  proxypassword = "YOUR_PROXY_PASSWORD", 
  proxyport     = YOUR_PROXY_PORT
)

options(RCurlOptions = opts)

你做任何情节操作之前。

您需要使用您的雇主或网络提供商提供的值(即 not GitHub 或 plotly)作为这些值。

您似乎在某个特殊网络中,您的网络管理员限制通过不同端口 (8080) 访问地址 (https://github.com/ropensci/plotly)。

要设置代理,请将目标 URL (https://github.com/ropensci/plotly) 替换为代理网址。即,将您的代码更改为:

set_config(use_proxy(url="proxy.aaa.com", port=8080)

假设这个proxy.aaa.com是你可以使用的代理,但这不应该是你的目标地址。

更多信息,可以试试?use_proxy