Learn R Programming

caroline (version 0.7.6)

write.delim: Write a (tab) delimited text file.

Description

A simple wrapper for write.table with the same options as read.delim

Usage

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

Arguments

df

a dataframe.

file

outputfile path.

quote

should elements of the dataframe be quoted for output.

row.names

should the output include rownames.

sep

the delimiter between fields.

...

other parameters passed to write.table.

Value

A tab delimited text file

See Also

read.delim

Examples

Run this code
# NOT RUN {
## Not run: 
x <- data.frame(a = I("a \" quote"), b = pi)
write.delim(x, file = "foo.tab")
## End(Not run)
# }

Run the code above in your browser using DataLab