将 github 中的 dput() 要点读入 R

Reading dput() gists from github into R

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

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 读取它的原因。如果不是,为什么?

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

library("devtools")
pull_lists <- source_gist("a7b157cec3b9259fc5d1")