我正在尝试从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读取它的原因。如果没有,为什么?