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 227... Line 227...
227
 
227
 
228
    o	There is a new class "Date" to represent dates (without times)
228
    o	There is a new class "Date" to represent dates (without times)
229
	plus many utility functions similar to those for date-times.
229
	plus many utility functions similar to those for date-times.
230
	See ?Date.
230
	See ?Date.
231
 
231
 
-
 
232
    o	varimax() and promax() add class "loadings" to their loadings
-
 
233
	component.
-
 
234
 
232
 
235
 
233
UTILITIES
236
UTILITIES
234
 
237
 
235
    o	R CMD check  now runs the (Rd) examples with default RNGkind
238
    o	R CMD check  now runs the (Rd) examples with default RNGkind
236
	(uniform & normal) and set.seed(1).
239
	(uniform & normal) and set.seed(1).
Line 266... Line 269...
266
	from FORTRAN code.
269
	from FORTRAN code.
267
 
270
 
268
    o	Salloc and Srealloc are provided in S.h as wrappers for S_alloc
271
    o	Salloc and Srealloc are provided in S.h as wrappers for S_alloc
269
	and S_realloc, since current S versions use these forms.
272
	and S_realloc, since current S versions use these forms.
270
 
273
 
-
 
274
    o	The type used for vector lengths is now R_len_t rather than
-
 
275
	int, to allow this to de defined as long and so allow vectors
-
 
276
	longer than 2^31 - 1 elements on 64-bit platforms.
-
 
277
 
271
 
278
 
272
DEPRECATED & DEFUNCT
279
DEPRECATED & DEFUNCT
273
 
280
 
274
    o	print.coefmat() is defunct, replaced by printCoefmat().
281
    o	print.coefmat() is defunct, replaced by printCoefmat().
275
 
282
 
Line 304... Line 311...
304
    o	--with-blas=goto to use K. Goto's optimized BLAS will now work.
311
    o	--with-blas=goto to use K. Goto's optimized BLAS will now work.
305
 
312
 
306
 
313
 
307
BUG FIXES
314
BUG FIXES
308
 
315
 
-
 
316
    o   minor copy-paste error in example(names) (PR#6594)
-
 
317
 
309
    o	contrasts() turns a logical variable into a factor.  This now
318
    o	contrasts() turns a logical variable into a factor.  This now
310
	always has levels c("FALSE", "TRUE") even if only one (or
319
	always has levels c("FALSE", "TRUE") even if only one (or
311
	none) of these occur in the variable.
320
	none) of these occur in the variable.
312
 
321
 
313
    o	model.frame()'s lm and glm methods had 'data' and 'na.action'
322
    o	model.frame()'s lm and glm methods had 'data' and 'na.action'
Line 406... Line 415...
406
    o	aov() with Error() term and no intercept incorrectly assigned
415
    o	aov() with Error() term and no intercept incorrectly assigned
407
	terms to strata. (PR#6510)
416
	terms to strata. (PR#6510)
408
 
417
 
409
    o   ftable() incorrectly handled arguments named "x".  (PR#6541)
418
    o   ftable() incorrectly handled arguments named "x".  (PR#6541)
410
 
419
 
-
 
420
    o	vector(), matrix(), array() and their internal equivalents
-
 
421
	report correctly that the number of elements specified was too
-
 
422
	large (rather than reporting it as negative).
-
 
423
 
411
 
424
 
412
 
425
 
413
 
426
 
414
	**************************************************
427
	**************************************************
415
	*						 *
428
	*						 *