I have downloaded a file from the following URL:
https://www.canmoney.in/IDT.XLS
It is the list of stocks eligible for intraday trading in my stock broker.
when I read it using read.csv
the folowing is the warning message and output:
> idt1 <- read.csv("C:/Users/user/Desktop/Rfiles/IDT1.XLS")
Warning message:
In read.table(file = file, header = header, sep = sep, quote = quote, :
incomplete final line found by readTableHeader on 'C:/Users/user/Desktop/Rfiles/IDT1.XLS'
> idt1
[1] ÐÏ.à..
the file contains 4 columns and 208 rows. Why is read.csv
not redaing the file properly?
very many thanks for your time and effort...