<html>
<head>
</head>
<body>
Dear R users and developers:<br>
<br>
I got this message when I try to make the summary of a numeric variable,<br>
<br>
<font face="Courier New, Courier, monospace">&gt; summary(Dep)<br>
&nbsp;&nbsp; <br>
&nbsp; Min.&nbsp;&nbsp; 1st Qu.&nbsp;&nbsp;&nbsp; Median&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Mean&nbsp;&nbsp; 3rd Qu.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Max. <br>
0.000e+00 1.192e+07 2.739e+07&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6.538e+07 1.858e+09 <br>
Warning message: <br>
Integer overflow in sum(.); use sum(as.numeric(.)) <br>
</font><br>
and it fails to make the sum (for calculate the mean), but I don't understand
the "Integer overflow"<br>
<br>
If I type the following command,<br>
<br>
<font face="Courier New, Courier, monospace">&gt; summary(as.numeric(Dep))<br>
&nbsp;&nbsp;&nbsp;&nbsp; Min.&nbsp;&nbsp; 1st Qu.&nbsp;&nbsp;&nbsp; Median&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Mean&nbsp;&nbsp; 3rd Qu.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Max. <br>
0.000e+00 1.192e+07 2.739e+07 5.306e+07 6.538e+07 1.858e+09 <br>
</font><br>
&nbsp;it works fine.... but I still don't undertand way it doesn't work without<br>
the "as.numeric" coerce, when other functions like "sd()" worked fine.<br>
<br>
Thank you very much for your advice<br>
<br>
Kenneth Cabrera<br>
<br>
P.S.: The length of Dep is 5297<br>
And I am working on W2K in R1.4.1. version.<br>
</body>
</html>