1

我正在尝试阅读包含dput来自 Github 的要点:

library(RCurl)
data <- getURL("https://gist.githubusercontent.com/aronlindberg/848b8efef154d0e7fdb4/raw/5bf4bb864cc4c1db0f66da1be85515b4fa19bf6b/pull_lists")
pull_lists <- dget(textConnection(data))

这会产生:

Error: '\U' used without hex digits in character string starting ""@@ -1,7 +1,9 @@
 module ActionDispatch
   module Http
     module URL
-      # Returns the complete \U"

我认为这是一条Ruby错误消息,而不是 R 错误。现在考虑一下:

data <- getURL("https://gist.githubusercontent.com/aronlindberg/b6b934b39e3c3378c3b2/raw/9b1efe9340c5b1c8acfdc90741260d1d554b2af0/data")
 pull_lists2 <- dget(textConnection(data))

这似乎工作正常。前一个要点相当大,1.7mb。这可能是我无法从 Github 读取它的原因吗?如果不是,为什么?

4

1 回答 1

2

您创建的 gist 中没有.R文件,因为pull_lists没有扩展名。我将你的要点分叉到这个并添加了扩展。现在可以获取要点并将其保存为一个值。

library("devtools")
pull_lists <- source_gist("a7b157cec3b9259fc5d1")
于 2015-02-19T20:34:43.057 回答