On Jul 5, 2011, at 1:17 PM, Bansal, Vikas wrote:
Dear all,
I have a data frame whose name is m1.
I want to write this data frame in text file as output.I am using
this code-
write.table(m1, file = "kas.txt", append =
FALSE,row.names=F,quote=F,sep="\t")
When I am opening my kas.txt file,the column names are not coming
exactly above the column.
The 'write' functions do not add spacing for alignment. Use print()
and capture.output()
?capture.output
--
David Winsemius, MD
West Hartford, CT
______________________________________________
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.