Displaying 1 result from an estimated 1 matches for "a_corr_data".
2009 Apr 26
1
Unable to re-import a table that was just exported to a file
Hi all,
I am saving a program's output to a file to be read by another algorithm.
But somehow such a simple operation (the reading) fails. I get:
Error in read.table("a_corr_data.txt", sep = ",", col.names = T, row.names =
F) :
more columns than column names
Here is the write statement:
write.table(a_corr_data,"a_corr_data.txt",sep=",",col.names=T,row.names=F)
Here is the read statement:
a_corr_data <-
read.table("a_corr_...