I'm interested in importing directly in R a portion of the .xls associated with the following url. The .xls has two different spreadsheets. I want to import the table that starts in the 5th row in the second spreadsheets. An attempt is the following:
require(gdata)
url = "https://www.philadelphiafed.org/-/media/research-and-data/real-time-center/real-time-data/data-files/files/routput_first_second_third.xls?la=en.xls"
dataset = read.xls(url, sheet=2, header=T, skip=4)
The error that I get is:
Error in file.exists(tfn) : invalid 'file' argument
I'm working in Windows. The source of the .xls is here under the name "All available observations". You are very welcome use different packages.