Displaying 1 result from an estimated 1 matches for "509865".
Did you mean:
509825
2011 Nov 18
1
Reading a file w/ two delimiters
Hi all,
I've been scratching and poking, but basically, the file I need to read has
two delimiters that I need to contend with. The first is that the file
contains
tabs (\t) , instead of newlines (\n), and the second is that the fields
have
| for the seperators. I can easily do a read if I first convert the \t to
\n
and then use read.table to get the file read with the | separator. But,
what