There is a strange thing when i use read.table to get data.
data=read.table('/home/tiger/nasdaqlisted.txt',head=T,sep='|')
dim(data)
[1] 750 6
in fact,there are 2454 lines in the file,what's wrong?
http://freeuploadfiles.com/bb3cwypih2d2
|
There is a strange thing when i use read.table to get data.
in fact,there are 2454 lines in the file,what's wrong? |
||||
|
I think the issue comes from the fact that some of the names contain the quote character
As per @mrdwab suggestion,
|
|||||||||
|
read.delim("path/to/file", sep="|")reads in all the lines for me. Can you try that and let me know if it works for you too? – Ananda Mahto Aug 8 '12 at 10:41read.delimbeingquote="\""instead ofquote = "\"'"it does make sense – plannapus Aug 8 '12 at 10:47