[R] Output data frame using write.table
David Winsemius
dwinsemius at comcast.net
Tue Jul 5 19:37:29 CEST 2011
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
More information about the R-help
mailing list