Full_Name: Axel Rasche
Version: 2.1.0
OS: Win2000
Submission from: (NULL) (141.14.21.81)


Hi,

write.table does not accept the second statement with
    <col.names = NA, row.names = FALSE>.
I do not see why this should not be possible.

test = matrix(1:4, 2, 2, dimnames = list( c("a","b"), c("c","d") ))
write.table(test, file = "test.txt", sep = "\t", quote = FALSE,
        col.names = NA, row.names = FALSE)
write.table(test, file = "test.txt", sep = "\t", quote = FALSE, 
        col.names = NA)
write.table(test, file = "test.txt", sep = "\t", quote = FALSE, 
        col.names = TRUE, row.names = FALSE)
write.table(test, file = "test.txt", sep = "\t", quote = FALSE, 
        col.names = FALSE, row.names = FALSE)

Thanks,
Axel

______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to