[R-gregmisc-commits] r2040 - in pkg/gtools: . inst
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Wed May 27 04:17:48 CEST 2015
Author: warnes
Date: 2015-05-27 04:17:45 +0200 (Wed, 27 May 2015)
New Revision: 2040
Modified:
pkg/gtools/DESCRIPTION
pkg/gtools/inst/ChangeLog
pkg/gtools/inst/NEWS
Log:
Update DESCRIPTION, ChangeLog, NEWS
Modified: pkg/gtools/DESCRIPTION
===================================================================
--- pkg/gtools/DESCRIPTION 2015-05-27 01:37:39 UTC (rev 2039)
+++ pkg/gtools/DESCRIPTION 2015-05-27 02:17:45 UTC (rev 2040)
@@ -20,10 +20,11 @@
- apply a function over adjacent subsets of a vector ('running'),
- modify the TCP\_NODELAY ('de-Nagle') flag for socket objects,
- efficient 'rbind' of data frames, even if the column names don't match ('smartbind'),
- - generate significance stars from p-values ('stars.pval').
+ - generate significance stars from p-values ('stars.pval'),
+ - convert characters to/from ASCII codes.
Version: 3.4.3
-Date: 2015-04-23
+Date: 2015-05-26
Author: Gregory R. Warnes, Ben Bolker, and Thomas Lumley
Maintainer: Gregory R. Warnes <greg at warnes.net>
-License: LGPL-2.1
+License: GPL-2
Modified: pkg/gtools/inst/ChangeLog
===================================================================
--- pkg/gtools/inst/ChangeLog 2015-05-27 01:37:39 UTC (rev 2039)
+++ pkg/gtools/inst/ChangeLog 2015-05-27 02:17:45 UTC (rev 2040)
@@ -1,3 +1,21 @@
+2015-05-27 warnes
+
+ * [r2039] R/mixedsort.R, man/mixedsort.Rd: Add roman numeral
+ support to mixedorder() and mixedsort().
+ * [r2037] man/asc.Rd: Add asc() and chr() functions for converting
+ between characters and ASCII codes
+ * [r2036] R/roman2int.R: roman2int() now returns NA for invalid
+ roman numeral strings instead of generating an error.
+ * [r2035] NAMESPACE: Add asc(), chr(), assignEdgewise(),
+ unByteCode(), and
+ unByteCodeAssign() to package NAMESPACE.
+ * [r2034] R/asc.R: Add asc() and chr() functions for converting
+ between characters and ASCII codes
+
+2015-05-26 warnes
+
+ * [r2030] inst/ChangeLog: Add changelog to svn repository
+
2015-05-25 warnes
* [r2029] tests/test_ddirichlet.R: Add library call.
Modified: pkg/gtools/inst/NEWS
===================================================================
--- pkg/gtools/inst/NEWS 2015-05-27 01:37:39 UTC (rev 2039)
+++ pkg/gtools/inst/NEWS 2015-05-27 02:17:45 UTC (rev 2040)
@@ -1,8 +1,34 @@
-gtools 3.4.3 - 2015-04-06
+gtools 3.5.0 - 2015-04-28
-------------------------
-Enhancements:
+New Functions:
+- New roman2int() functon to convert roman numerals to integers
+ without the range restriction of utils::as.roman().
+
+- New asc() and chr() functions to convert between ASCII codes and
+ characters. (Based on the 'Data Debrief' blog entry for 2011-03-09
+ at http://datadebrief.blogspot.com/2011/03/ascii-code-table-in-r.html).
+
+- New unByteCode() and unByteCodeAssign() functions to convert a
+ byte-code functon to an interpeted code function.
+
+- New assignEdgewise() function for making assignments into locked
+ environments. (Used by unByteCodeAssign().)
+
+Enhacements:
+
+- mixedsort() and mixedorder() now have arguments 'decreasing',
+ 'na.last', and 'blank.last' arguments to control sort ordering.
+
+- mixedsort() and mixedirdeR() now support Roman numerals via the
+ arguments 'numeric.type', and 'roman.case'. (Request by David
+ Winsemius, suggested code changes by Henrik Bengtsson.)
+
+- speed up mixedorder() (and hence mixedsort()) by moving
+ suppressWarnings() outside of lapply loops. (Suggestion by Henrik
+ Bengtsson.)
+
- The 'q' argument to quantcut() now accept an integer
indicating the number of equally spaced quantile groups to
create. (Suggestion and patch submitted by Ryan C. Thompson.)
@@ -11,6 +37,9 @@
- Removed stray browser() call in smartbind().
+- ddirichlet(x, alpha) was incorrectly returning NA when for any i,
+ x[i]=0 and alpha[i]=1. (Bug report by John Nolan.)
+
Other changes:
- Correct typographical errors in package description.
More information about the R-gregmisc-commits
mailing list