/usr/lib/R/site-library/gtools/NEWS is in r-cran-gtools 3.2.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | gtools 3.2.0 - 2014-01-11
-------------------------
New features:
- The keywords() function now accepts a function or function name as
an argument and will return the list of keywords associated with the
named function.
- New function stars.pval() which will generate p-value significance
symbols ('***', '**', etc.)
Bug fixes:
- R/mixedsort.R: mixedorder() was failing to correctly handle numbers
including decimals due to a faulty regular expression.
Other changes:
- capture() and sprint() are now defunct.
gtools 3.1.1 - 2013-11-06
-------------------------
Bug fixes:
- Fix problem with mixedorder/mixedsort when there is zero or one
elements in the argument vector.
gtools 3.1.0 - 2013-09-22
-------------------------
Major changes:
- The function 'addLast()' (deprecated since gtools 3.0.0) is no
longer available, and has been marked defunct.
Bug fixes:
- Modified 'mixedorder()' to use Use 'suppressWarnings() instead of
'options(warn=-1)'. This will avoid egregious warning messages when
called from within a nested environment, such as when run from
within 'knitr'
gtools 3.0.0 - 2013-07-06
-------------------------
Major changes:
- The function 'addLast()' has been deprecated because it directly
manipulates the global environment, which is expressly prohibited by
the CRAN policies.
- A new function, 'lastAdd()' has been created to replace 'addLast()'.
The name has been changed because the two functions require
different syntax. 'addLast()' was used like this:
byeWorld <- function() cat("\nGoodbye World!\n")
addLast(byeWorld)
The new 'lastAdd()' function is used like this:
byeWorld <- function() cat("\nGoodbye World!\n")
.Last <- lastAdd(byeWorld)
Bug fixes:
- Update checkRVersion() to work with R version 3.0.0 and later.
Other changes:
- Remove cross-reference to (obsolete?) moc package
- The function 'assert()' (deprecated since gtools 2.5.0) is no longer
available and has been marked defunct.
gtools 2.7.1 - 2013-03-17
-------------------------
Bug fixes:
- smartbind() was not properly handling factor columns when the first
data frame did not include the relevant column.
gtools 2.7.0 - 2012-06-19
-------------------------
New features:
- smartbind() has a new 'sep' argument to allow specification of the
character(s) used to separate components of constructed column names
- smartbind() has a new 'verbose' argument to provide details on how
coluumns are being processed
Bug fixes:
- smartbind() has been enhanced to improve handling of factor and
ordered factor columns.
gtools 2.6.2 - 2011-09-28
-------------------------
New features:
- Add 'fill' argument to smartbind() to specify a value to use for
missing entries.
gtools 2.6.1
------------
New features:
- Add newVersionAvailable() function to compare running and latest
available R versions.
- Add keywords() function to show $RHOME/doc/KEYWORDS file
Bug fixes:
- Correct windows make flags as suggested by Brian Ripley.
- Update Greg's email address and fix Rd syntax errors
gtools 2.5.0
------------
New features:
- Add checkRVersion() function to determin if a newer version of R is
available.
- Deprecated assert() in favor of base::stopifnot
Bug fixes:
- Fix bug in binsearch() identified by 2.6.0 R CMD CHECK
Other changes:
- Improve text explanation of how defmacro() and strmacro() differ from
function().
- Update definitions of odd() and even() to use modulus operator
instead of division.
gtools 2.4.0
------------
- Add binsearch() function, previously in the genetics() package.
gtools 2.3.1
------------
- Add ask() function to prompt the user and collect a single response.
gtools 2.3.0
------------
- Update email address for Greg
- Add new 'smartbind' function, which combines data frames
efficiently, even if they have different column names.
gtools 2.2.3
------------
- setTCPNoDelay now compiles & works properly on Windows
gtools 2.2.2
------------
- src/setTCPNoDelay.c: Add C source code for setTCPNoDelay.
- NAMESPACE: Add UseDynLib to NAMESPACE so the shared library gets
properly loaded.
- Updated Greg's email address.
gtools 2.2.1
------------
- New function 'addLast' that adds functions to R's .Last() so
that they will be executed when R is terminating.
- New function setTCPNoDelay() that allows the TCP_NODELAY flag to
be changed on socket objects.
gtools 2.1.0
------------
- Added assert.R (and documentation)
- Added the defmacro() function, extracted from Lumley T. "Programmer's Niche:
Macros in {R}", R News, 2001, Vol 1, No. 3, pp 11--13,
\url{http://CRAN.R-project.org/doc/Rnews/}
- Added DESCRIPTION and removed DESCRIPTION.in
|