The R Project SVN R

Rev

Rev 28254 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 28254 Rev 28362
Line 1181... Line 1181...
1181
aov(y ~ a + b - 1 + Error(c), data=test.df)
1181
aov(y ~ a + b - 1 + Error(c), data=test.df)
1182
## wrong assignment to strata labels < 1.9.0
1182
## wrong assignment to strata labels < 1.9.0
1183
## Note this is unbalanced and not a good example
1183
## Note this is unbalanced and not a good example
1184
 
1184
 
1185
binom.test(c(800,10))# p-value < epsilon
1185
binom.test(c(800,10))# p-value < epsilon
-
 
1186
 
-
 
1187
 
-
 
1188
## Misleading error messages on integer overflow
-
 
1189
## Uwe Ligges, R-devel, 2004-02-19
-
 
1190
try(numeric(2^31))
-
 
1191
try(matrix( , 2^31, 1))
-
 
1192
try(matrix( , 2^31/10, 100))
-
 
1193
try(array(dim=c(2^31/10, 100)))
-
 
1194
## reported negative values (really integer NA) for R < 1.9.0