[Rd] write.table confused by rownames/colnames (PR#7941)

rasche@molgen.mpg.de rasche at molgen.mpg.de
Wed Jun 15 13:56:16 CEST 2005


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



More information about the R-devel mailing list