gpt4 book ai didi

R从带有R的下载链接中读取excel文件

转载 作者:行者123 更新时间:2023-12-04 21:15:28 24 4
gpt4 key购买 nike

我想从此 Link 读取 excel 文件,这是来自巴西统计局的表格。我怎样才能做到这一点?我试过这个:

制表符<-“https://sidra.ibge.gov.br/geratabela?format=xlsx&name=tabela6402.xlsx&terr=N&rank=-&query=t/6402/n1/all/n2/all/v/4104/p/all/c86/all/d/v4104%201/l/v,p,t%2Bc86

库(readxl)

df <- read_excel(tab)

最佳答案

试试这个修改后的版本。

library(RCurl)
library(readxl)

temp.file <- paste(tempfile(),".xlsx",sep = "")
download.file("https://sidra.ibge.gov.br/geratabela?format=xlsx&name=tabela6402.xlsx&terr=N&rank=-&query=t/6402/n1/all/n2/all/v/4104/p/all/c86/all/d/v4104%201/l/v,p,t%2Bc86", temp.file, mode = "wb")

tmp <- read_excel(temp.file, skip = 2)

关于R从带有R的下载链接中读取excel文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43944139/

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