I am trying to write a 10000x8 matrix into a text file so I can read it into SAS. When I tried using write.table I could not get just 8 columns and 10000 rows it would just write all the data in a line until it hit the end and went to the next line. I tried instead using write.foreign and I got an error message: Error in if (varnames[v] != names(varnames)[v]) cat("LABEL ", varnames[v], : argument is of length zero
I do not want any variable names at all I just want the data in a text file with 8 columns and 10000 rows. The code I used was: write.foreign(T1, "time1.txt", "time1.sas", package="SAS"). Is there any way in which I can write the matrix as is in a text (or csv) file without having any variable names? -- View this message in context: http://r.789695.n4.nabble.com/trouble-with-write-foreign-tp4664654.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.