I want to read the excel file from this Link, it is table from Brazilian Institut of Statistics. How can I do that? I've tried this:
library(readxl)
df <- read_excel(tab)
I want to read the excel file from this Link, it is table from Brazilian Institut of Statistics. How can I do that? I've tried this:
library(readxl)
df <- read_excel(tab)
Give this modified version a try.
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)