Skip to content
Prev 318685 / 398503 Next

Mysterious issues with reading text files from R in ArcGIS and Excel

On 04/03/2013 10:52 AM, Kerry wrote:
That's not a CSV file, it is being written with a blank as separator.   
Since it also has blanks in the formatted POSIXct column, you're very 
likely to run into problems reading it.

Use write.csv(test, "test.csv") and you'll have fewer problems.  If you 
want tab-delimited columns instead, you'll need to specify that in the 
write.table call.

Duncan Murdoch