gpt4 book ai didi

r - 使用 R 下载 Excel 文件

转载 作者:行者123 更新时间:2023-12-01 22:51:05 25 4
gpt4 key购买 nike

我正在尝试从哥伦比亚中央银行网站下载 Excel 文件,但通常的 download.file 函数似乎无法完成此任务。

例如,我正在尝试下载此页面上的第一个文件“Serie Historicala”:http://www.banrep.gov.co/es/indice-tasa-cambio-real

文件的链接如下,我在download.file函数中使用的 http://obieebr.banrep.gov.co/analytics/saw.dll?Download&Format=excel2007&Extension=.xls&BypassCache=true&path=%2Fshared%2FSeries%20Estad%c3%adsticas_T%2F1.%20Indice%20de%20Tasa%20de%20Cambio%20Real%2F1.1.%20Serie%20historica_IQY&SyncOperation=1&NQUser=publico&NQPassword=publico

我使用的命令是:

download.file(filepath, destfile, quiet=FALSE, mode="wb")

最佳答案

我希望这个例子能够指导你

library(readxl)
library(httr)
url1<-'https://evs.nci.nih.gov/ftp1/CDISC/SDTM/SDTM%20Terminology.xls'
GET(url1, write_disk(tf <- tempfile(fileext = ".xls")))
df <- read_excel(tf, 2L)
str(df)

如果您可以下载该文件,您可以按如下方式阅读

library(readxl)
datos <- read_xlsx("C:/Users/USER/Downloads/1.1. Serie historica_IQY.xlsx", skip = 8, n_max = 369)

关于r - 使用 R 下载 Excel 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46552923/

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