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 t
sep
the field separator string. Values within each row of 'x' are separated by this string.
data(preybiom)
write.delim(preybiom[1:10,]) # output to the console write.delim(preybiom[1:10,],file="Myfile.txt") # write a file in the working directory