我正在尝试将一个RDS文件导入到Windows中的RStudio中,我尝试使用这个用于Rdata的example,我尝试了两种方法:
方法1:
githubURL <- ("https://github.com/derek-corcoran-barrios/LastBat/blob/master/best2.My.Lu2.rds")
BestMyyu <- readRDS(url(githubURL))
方法2:
githubURL <- ("https://github.com/derek-corcoran-barrios/LastBat/blob/master/best2.My.Lu2.rds")
download.file(githubURL,"best2.My.Lu2.rds")
BestMyyu <- readRDS("best2.My.Lu2.rds")
我找了其他线程,但我没有找到任何其他例子
答案 0 :(得分:4)
在第二种方法中,您只需添加method="curl"
,并将网址更改为指向raw
(页面上的下载链接)
githubURL <- ("https://raw.githubusercontent.com/derek-corcoran-barrios/LastBat/master/best2.My.Lu2.rds")
download.file(githubURL,"best2.My.Lu2.rds", method="curl")
BestMyyu <- readRDS("best2.My.Lu2.rds")
如果您没有安装curl
,可以从here