Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想设置代码以将 .rda 直接下载并加载到 R 中。以下代码不起作用,但说明了我正在尝试做的事情:
githubURL <- "https://github.com/ropensci/historydata/blob/master/data/catholic_dioceses.rda" load(url(githubURL)) download.file(githubURL,"D") load("D")
感谢您对如何调整此代码的任何想法。