Thread: [R-gregmisc-users] SF.net SVN: r-gregmisc:[1397] trunk/gdata/NAMESPACE
Brought to you by:
warnes
From: <wa...@us...> - 2010-01-24 08:21:31
|
Revision: 1397 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1397&view=rev Author: warnes Date: 2010-01-24 08:21:24 +0000 (Sun, 24 Jan 2010) Log Message: ----------- Add new functions to NAMESPACE Modified Paths: -------------- trunk/gdata/NAMESPACE Modified: trunk/gdata/NAMESPACE =================================================================== --- trunk/gdata/NAMESPACE 2010-01-24 08:19:54 UTC (rev 1396) +++ trunk/gdata/NAMESPACE 2010-01-24 08:21:24 UTC (rev 1397) @@ -35,6 +35,7 @@ write.fwf, xls2csv, xls2tab, + xls2tsv, xls2sep, ## Object size stuff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2011-09-02 17:25:17
|
Revision: 1500 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1500&view=rev Author: warnes Date: 2011-09-02 17:25:11 +0000 (Fri, 02 Sep 2011) Log Message: ----------- Add 'centerText' function to center text strings for a specified width. Modified Paths: -------------- trunk/gdata/NAMESPACE Modified: trunk/gdata/NAMESPACE =================================================================== --- trunk/gdata/NAMESPACE 2011-09-02 17:24:49 UTC (rev 1499) +++ trunk/gdata/NAMESPACE 2011-09-02 17:25:11 UTC (rev 1500) @@ -5,6 +5,7 @@ aggregate.table, bindData, cbindX, + centerText, combine, ConvertMedUnits, drop.levels, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2011-09-20 18:07:51
|
Revision: 1507 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1507&view=rev Author: warnes Date: 2011-09-20 18:07:45 +0000 (Tue, 20 Sep 2011) Log Message: ----------- Add case() function, a vector equivalent of the switch() function Modified Paths: -------------- trunk/gdata/NAMESPACE Modified: trunk/gdata/NAMESPACE =================================================================== --- trunk/gdata/NAMESPACE 2011-09-20 18:07:07 UTC (rev 1506) +++ trunk/gdata/NAMESPACE 2011-09-20 18:07:45 UTC (rev 1507) @@ -4,6 +4,7 @@ Args, aggregate.table, bindData, + case, cbindX, centerText, combine, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2012-06-05 20:10:00
|
Revision: 1540 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1540&view=rev Author: warnes Date: 2012-06-05 20:09:50 +0000 (Tue, 05 Jun 2012) Log Message: ----------- Remove nobs method dispatch and lm methods since these are now provided by the stats package. Modified Paths: -------------- trunk/gdata/NAMESPACE Modified: trunk/gdata/NAMESPACE =================================================================== --- trunk/gdata/NAMESPACE 2012-06-05 20:08:50 UTC (rev 1539) +++ trunk/gdata/NAMESPACE 2012-06-05 20:09:50 UTC (rev 1540) @@ -22,7 +22,7 @@ lowerTriangle, "lowerTriangle<-", matchcols, - nobs, + #nobs, # default method now provided by stats package nPairs, read.xls, rename.vars, @@ -61,6 +61,7 @@ ) importFrom(stats, reorder) +importFrom(stats, nobs) importFrom(gtools, mixedsort) S3method(reorder, factor) @@ -120,8 +121,8 @@ ## nobs stuff S3method(nobs, data.frame) -S3method(nobs, default) -S3method(nobs, lm) +S3method(nobs, default) +##S3method(nobs, lm) # now provided by stats package ## Object size stuff S3method(print, object_size) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2012-09-20 17:15:30
|
Revision: 1621 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1621&view=rev Author: warnes Date: 2012-09-20 17:15:20 +0000 (Thu, 20 Sep 2012) Log Message: ----------- Add duplicated() and ans() to the NAMESPACE. Modified Paths: -------------- trunk/gdata/NAMESPACE Modified: trunk/gdata/NAMESPACE =================================================================== --- trunk/gdata/NAMESPACE 2012-09-20 17:12:14 UTC (rev 1620) +++ trunk/gdata/NAMESPACE 2012-09-20 17:15:20 UTC (rev 1621) @@ -1,6 +1,7 @@ export( .onAttach, + ans, Args, aggregate.table, bindData, @@ -10,6 +11,7 @@ combine, ConvertMedUnits, drop.levels, + duplicated2, elem, env, frameApply, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2014-04-05 02:25:04
|
Revision: 1785 http://sourceforge.net/p/r-gregmisc/code/1785 Author: warnes Date: 2014-04-05 02:25:02 +0000 (Sat, 05 Apr 2014) Log Message: ----------- Update NAMESPACE file to remove deleted function Modified Paths: -------------- trunk/gdata/NAMESPACE Modified: trunk/gdata/NAMESPACE =================================================================== --- trunk/gdata/NAMESPACE 2014-04-05 02:23:45 UTC (rev 1784) +++ trunk/gdata/NAMESPACE 2014-04-05 02:25:02 UTC (rev 1785) @@ -43,7 +43,7 @@ write.fwf, xls2csv, xls2tab, - xls2tsv, + xls2tsv, xls2sep, xlsFormats, @@ -57,10 +57,7 @@ mapLevels, as.levelsMap, as.listLevelsMap, is.levelsMap, is.listLevelsMap, "mapLevels<-", ## unknown stuff - isUnknown, unknownToNA, NAToUnknown, - - ## Unit testing - .runRUnitTestsGdata + isUnknown, unknownToNA, NAToUnknown ) importFrom(stats, reorder) @@ -124,7 +121,7 @@ ## nobs stuff S3method(nobs, data.frame) -S3method(nobs, default) +S3method(nobs, default) S3method(nobs, lm) # now provided by stats package ## Object size stuff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2015-04-25 07:58:25
|
Revision: 1962 http://sourceforge.net/p/r-gregmisc/code/1962 Author: warnes Date: 2015-04-25 07:58:18 +0000 (Sat, 25 Apr 2015) Log Message: ----------- is.* and as.* aren't generics Modified Paths: -------------- trunk/gdata/NAMESPACE Modified: trunk/gdata/NAMESPACE =================================================================== --- trunk/gdata/NAMESPACE 2015-04-25 07:57:39 UTC (rev 1961) +++ trunk/gdata/NAMESPACE 2015-04-25 07:58:18 UTC (rev 1962) @@ -130,9 +130,7 @@ ## Object size stuff S3method(c, object_sizes) -S3method(as, object_sizes) S3method(format, object_sizes) -S3method(is, object_sizes) S3method(print, object_sizes) ## unknown stuff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2015-04-28 06:28:30
|
Revision: 1986 http://sourceforge.net/p/r-gregmisc/code/1986 Author: warnes Date: 2015-04-28 06:28:23 +0000 (Tue, 28 Apr 2015) Log Message: ----------- Remove no-longer defined methods. Modified Paths: -------------- trunk/gdata/NAMESPACE Modified: trunk/gdata/NAMESPACE =================================================================== --- trunk/gdata/NAMESPACE 2015-04-28 06:27:33 UTC (rev 1985) +++ trunk/gdata/NAMESPACE 2015-04-28 06:28:23 UTC (rev 1986) @@ -156,11 +156,7 @@ S3method(trim, list) S3method(trim, data.frame) -## first, last, left, right -S3method(first, default) -S3method(first, list ) -S3method(last, default) -S3method(last, list ) +## left, right S3method(left, data.frame) S3method(left, matrix) S3method(right, data.frame) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |