"Mihai Nica" <[EMAIL PROTECTED]> writes: > Windows 2000, updated R and packages. > > could somebody pleaseeeeeeeee help with saving a data.frame with > column names into "\t" text files for later importing in other > programs? It seems an easy task, yet... it beats me.
See ?write.table You want to use something like write.table(myDataFrame, file = "myTabSeparatedFile.txt", sep = "\t") ______________________________________________ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
