Here is the URL:
https://www.bls.gov/lau/laucnty15.txt
Unfortunately, I think the problem is that the table is tab-delimited but values are not delimited by quotes (""). So I don't know how I would strip out values using spaces without breaking apart the county name, for example.
I have tried:
webData <- data.frame(read.table(usrWebsiteURL,sep="\t",skip=5,header=F))
webData <- data.frame(readLines(usrWebsiteURL)),sep="\t",skip=5,header=F)
Either method creates a large, 1-column data.frame.
Why is the sep="\t"
not working? Worse-case scenario, I can accept a split apart County Name and put it back together later, but I can't even achieve splitting apart the words in the table.