Im trying to read the following csv file into R
http://asic.gov.au/Reports/YTD/2015/RR20150511-001-SSDailyYTD.csv
The code im currently using is:
url <- "http://asic.gov.au/Reports/YTD/2015/RR20150511-001-SSDailyYTD.csv"
shorthistory <- read.csv(url, skip = 4)
However I keep getting the following error.
1: In readLines(file, skip) : line 1 appears to contain an embedded nul
2: In readLines(file, skip) : line 2 appears to contain an embedded nul
3: In readLines(file, skip) : line 3 appears to contain an embedded nul
4: In readLines(file, skip) : line 4 appears to contain an embedded nul
Which leads me to believe I am utilizing the function incorrectly as it is failing with every line.
Any help would be very much appreciated!