gpt4 book ai didi

r - R 可以从 URL 读取压缩的 XLS 文件吗?

转载 作者:行者123 更新时间:2023-12-04 19:08:46 25 4
gpt4 key购买 nike

是否可以从在线 ZIP 文件中读取 Excel 文件?

我一直在尝试使用 read.csv 做的事情:

nuts = url("http://ec.europa.eu/eurostat/ramon/documents/nuts/NUTS_2010.zip")
xlsx::read.xlsx(unz(nuts, "NUTS_2010.xls"), 1)
close(nuts)

……无济于事。

最佳答案

这有点不方便,但是如何:

basefn <- "NUTS_2010"
urlPath <- "http://ec.europa.eu/eurostat/ramon/documents/nuts/"
xlsFile <- paste0(basefn,".xls")
zipFile <- paste0(basefn,".zip")
download.file(paste0(urlPath,zipFile),zipFile)
unzip(zipFile)
## I had trouble with xlsx::read.xlsx, but gdata::read.xls was OK
## xlsx::read.xlsx(xlsFile,1)
gdata::read.xls(xlsFile)
unlink(zipFile)

您可以随时将其打包成 readZipURL <- function(urlPath,basefn) {...}功能,如果您想定期执行此操作(您可能也想清理下载的 XLS 文件...)

关于r - R 可以从 URL 读取压缩的 XLS 文件吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17898729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com