The write.csv() function is currently implemented as

   function (..., col.names=NA, sep=",", qmethod="double")
   {
     write.table(..., col.names=NA, sep=",", qmethod="double")
   }

Surely, it should be

   function (..., col.names=NA, sep=",", qmethod="double")
   {
     write.table(..., col.names=col.names, sep=sep, qmethod=qmethod)
   }

so that the user arguments serve a purpose. This notion is reflected in 
the implementation of read.csv(), for example, where sep=sep, quote=quote, 
etc.


Arni

R 2.1.1pat 2005-07-04 on WinXP

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

Reply via email to