[R-gregmisc-users] SF.net SVN: r-gregmisc:[1606] trunk/gdata
Brought to you by:
warnes
From: <wa...@us...> - 2012-09-12 17:40:42
|
Revision: 1606 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1606&view=rev Author: warnes Date: 2012-09-12 17:40:36 +0000 (Wed, 12 Sep 2012) Log Message: ----------- Update for gdata 2.12.0 Modified Paths: -------------- trunk/gdata/DESCRIPTION trunk/gdata/inst/NEWS Modified: trunk/gdata/DESCRIPTION =================================================================== --- trunk/gdata/DESCRIPTION 2012-09-12 17:39:42 UTC (rev 1605) +++ trunk/gdata/DESCRIPTION 2012-09-12 17:40:36 UTC (rev 1606) @@ -4,8 +4,8 @@ Depends: R (>= 2.13.0) SystemRequirements: perl Imports: gtools -Version: 2.11.1 -Date: 2012-09-22 +Version: 2.12.0 +Date: 2012-10-12 Author: Gregory R. Warnes, with contributions from Ben Bolker, Gregor Gorjanc, Gabor Grothendieck, Ales Korosec, Thomas Lumley, Don MacQueen, Arni Magnusson, Jim Rogers, and others Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2012-09-12 17:39:42 UTC (rev 1605) +++ trunk/gdata/inst/NEWS 2012-09-12 17:40:36 UTC (rev 1606) @@ -1,3 +1,19 @@ +Changes in 2.12.0 (2012-10-12) +------------------------------ + +Other Changes: + +- 'stats::aggregate' was made into a generic on 27-Jan-2010, so that + attempting to call 'aggregate' on a 'table' object will now + incorrectly call 'aggregate.table'. Since 'aggregate.table' can be + replaced by a call to tapply using two index vectors, e.g. + aggregate.table(x, by1=a, by2=b, mean) + can be replaced by + tapply(x, INDEX=list(a, b), FUN=mean), + the 'aggregate.table' function will now display a warning that it + is depreciated and recommending the equivalent call to tapply. It + will be removed entirely in a future version of gdata. + Changes in 2.11.1 (2012-09-22) ------------------------------ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |