<br><font size=2 face="sans-serif">Thanks a lot! That works. This will solve my problem. Otherwise I need to update lots of R functions we have developed based on R1.3.1.</font>
<br>
<br>
<br>
<table width=100%>
<tr valign=top>
<td>
<td><font size=1 face="sans-serif"><b>Ben Bolker &lt;ben@zoo.ufl.edu&gt;</b></font>
<p><font size=1 face="sans-serif">10/11/2002 04:49 PM</font>
<br><font size=1 face="sans-serif">Please respond to bolker</font>
<br>
<td><font size=1 face="Arial">&nbsp; &nbsp; &nbsp; &nbsp; </font>
<br><font size=1 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; To: &nbsp; &nbsp; &nbsp; &nbsp;Ren_Yu@hgsi.com</font>
<br><font size=1 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; cc: &nbsp; &nbsp; &nbsp; &nbsp;r-help@stat.math.ethz.ch</font>
<br><font size=1 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp; Subject: &nbsp; &nbsp; &nbsp; &nbsp;Re: [R] read.table( ... comment.char=&quot;#&quot;) truncated my data</font></table>
<br>
<br>
<br><font size=2 face="Courier New"><br>
 I would guess the answer is yes (although I'm not in R-Core), but in the<br>
meanwhile you can easily override the definition with your own by putting<br>
something like<br>
<br>
old.read.table &lt;- read.table<br>
read.table &lt;- function(...) {<br>
 &nbsp; old.read.table(...,comment.char=&quot;&quot;)<br>
}<br>
<br>
in your .Rprofile or .First function, which will work<br>
as long as you never use the comment.char argument explicitly<br>
with your new version of read.table ...<br>
<br>
(warning: I haven't tested this)<br>
<br>
On Fri, 11 Oct 2002 Ren_Yu@hgsi.com wrote:<br>
<br>
&gt; Dear all,<br>
&gt; <br>
&gt; I found that the new feature of the comment.char=&quot;#&quot; &nbsp;argument in the <br>
&gt; read.table function truncated my data while the data set actually contains <br>
&gt; &nbsp;'#'. We analyze lot of data that contain '#'. This is really annoying and <br>
&gt; it is also not compatible earlier version of R. I searched the R archive <br>
&gt; and found the following message for the scan function. Is it possible to <br>
&gt; change the default to &quot; &quot; in read.table ?<br>
&gt; <br>
&gt; Thanks,<br>
&gt; <br>
&gt; Ren<br>
&gt; <br>
&gt; <br>
&gt; <br>
&gt; On Tue, 19 Feb 2002, Steve Cassidy wrote: <br>
&gt; &gt; I've just discovered the recent addition of the comment.char arg to <br>
&gt; scan, a <br>
&gt; &gt; useful feature no doubt but the default value of # rather than &quot;&quot; breaks <br>
&gt; my <br>
&gt; &gt; code which looks for # as a delimeter in a file and provides a messy <br>
&gt; &gt; incompatability with earlier versions of R and with Splus. <br>
&gt; &gt; <br>
&gt; &gt; Is there any chance that this default could be changed to &quot;&quot;? <br>
&gt; It already has been. The NEWS for R-patched / R-devel says: <br>
&gt; &nbsp; &nbsp; o The default has been changed to scan(comment.char=&quot;&quot;) for <br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; consistency with earlier code (as in the previous item). <br>
&gt; <br>
<br>
-- <br>
318 Carr Hall &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bolker@zoo.ufl.edu<br>
Zoology Department, University of Florida &nbsp; &nbsp;http://www.zoo.ufl.edu/bolker<br>
Box 118525 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (ph) &nbsp;352-392-5697<br>
Gainesville, FL 32611-8525 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (fax) 352-392-3704<br>
<br>
</font>
<br>
<br>