pgirmess (version 2.0.3)

write.delim: Write a data.frame

Description

Write a simple data.frame into a text file with header, no row.names, fields separated by tab.

Usage

write.delim(x, file = "", row.names = FALSE, quote = FALSE, sep = "\t", ...)

Value

A tab delimited text file.

Arguments

x

a data.frame

file

a character string for file name

row.names

either a logical value indicating whether the row names of 'x' are to be written along with 'x', or a character vector of row names to be written

quote

a logical value or a numeric vector. If 'TRUE', any character or factor columns will be surrounded by double quotes. If a numeric vector, its elements are taken as the indices of the columns to quote. In both cases, row and column names are quoted if they are written. If 'FALSE', nothing is quoted.

sep

the field separator string. Values within each row of 'x' are separated by this string.

...

additional arguments accepted by write.table

Details

Simple wrapper of write.table.

See Also

Examples

Run this code
 data(preybiom)
 write.delim(preybiom[1:10,]) # output to the console
 
if (FALSE) {
 write.delim(preybiom[1:10,],file="Myfile.txt") # write a file in the working directory
}
 

Run the code above in your browser using DataLab