write.csv.tabular.RdThis writes the formatted table into a CSV or other delimeted file, for import into a spreadsheet or other report writer.
write.csv.tabular(x, file="",
justification = "n", row.names=FALSE, ...)
write.table.tabular(x, file="",
justification = "n", row.names=FALSE, col.names=FALSE, ...)An object from tabular.
A filename or connection to which to write.
Parameter to pass to format.tabular.
Parameters to pass to write.csv or write.table
Parameters to pass to format.tabular or write.table;
see Details below.
write.csv.tabular writes a simple version of the table (similar
to what is produced by print.tabular) to the given
connection in CSV format, using write.csv.
write.table.tabular does similarly using the more general
write.table.
The optional arguments in ... are sent to write.csv/write.table
if their names exactly match parameters to write.table; otherwise, they
are sent to format.tabular.
The return value from write.csv or write.table.