[r] Prevent row names to be written to file when using write.csv

Commands:

t <- data.frame(v = 5:1, v2 = 9:5)
write.csv(t, "t.csv")

Resulting file:

# "","v","v2"
# "1",5,9
# "2",4,8
# "3",3,7
# "4",2,6
# "5",1,5

How do I prevent first column with row index from being written to the file?

This question is related to r csv

The answer is


write.csv(t, "t.csv", row.names=FALSE)

From ?write.csv:

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.

Similar questions with r tag:

Similar questions with csv tag: