[R-gregmisc-users] SF.net SVN: r-gregmisc:[1922] trunk/gdata
Brought to you by:
warnes
From: <wa...@us...> - 2015-04-10 03:15:49
|
Revision: 1922 http://sourceforge.net/p/r-gregmisc/code/1922 Author: warnes Date: 2015-04-10 03:15:42 +0000 (Fri, 10 Apr 2015) Log Message: ----------- Update files for gdata 2.15.0 Modified Paths: -------------- trunk/gdata/DESCRIPTION trunk/gdata/NAMESPACE trunk/gdata/inst/NEWS Modified: trunk/gdata/DESCRIPTION =================================================================== --- trunk/gdata/DESCRIPTION 2015-04-09 19:46:55 UTC (rev 1921) +++ trunk/gdata/DESCRIPTION 2015-04-10 03:15:42 UTC (rev 1922) @@ -1,11 +1,11 @@ Package: gdata -Title: Various R programming tools for data manipulation +Title: Various R Programming Tools for Data Manipulation Description: Various R programming tools for data manipulation Depends: R (>= 2.13.0) SystemRequirements: perl Imports: gtools -Version: 2.14.0 -Date: 2014-08-27 +Version: 2.15.0 +Date: 2015-04-06 Author: Gregory R. Warnes, Ben Bolker, Gregor Gorjanc, Gabor Grothendieck, Ales Korosec, Thomas Lumley, Don MacQueen, Arni Magnusson, Jim Rogers, and others Modified: trunk/gdata/NAMESPACE =================================================================== --- trunk/gdata/NAMESPACE 2015-04-09 19:46:55 UTC (rev 1921) +++ trunk/gdata/NAMESPACE 2015-04-10 03:15:42 UTC (rev 1922) @@ -14,11 +14,14 @@ duplicated2, elem, env, + first, frameApply, installXLSXsupport, interleave, is.what, keep, + last, + left, ll, ls.funs, lowerTriangle, @@ -31,6 +34,7 @@ remove.vars, reorder.factor, resample, + right, sheetCount, sheetNames, startsWith, @@ -151,3 +155,13 @@ S3method(trim, factor) S3method(trim, list) S3method(trim, data.frame) + +## first, last, left, right +S3method(first, default) +S3method(first, list ) +S3method(last, default) +S3method(last, list ) +S3method(left, data.frame) +S3method(left, matrix) +S3method(right, data.frame) +S3method(right, matrix) Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2015-04-09 19:46:55 UTC (rev 1921) +++ trunk/gdata/inst/NEWS 2015-04-10 03:15:42 UTC (rev 1922) @@ -1,3 +1,15 @@ +Changes in 2.15.0 (2015-04-06) +------------------------------ + +New features: + +- New functions first() and last() to retrun the first or last + element of a vector or list. + +- New functions left() and right() to return the leftmost or + rightmost n (default to 6) columns of a matrix or dataframe. + + Changes in 2.14.0 (2014-08-27) ------------------------------ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |