1- Changes in 2.12.0 (2012-10-12)
1+ Changes in 2.13.2 (2013-06-28)
2+ ------------------------------
3+
4+ Enhancements:
5+
6+ - Simplify ll() by converting a passed list to an environment,
7+ avoiding the need for special casing and the use of attach/detach.
8+
9+ - Working of deprecation warning message in aggregate.table clarified.
10+
11+ Changes in 2.13.1 (2013-03-24)
12+ ------------------------------
13+
14+ Enhancements:
15+
16+ - Replaced calls to depreciated function ".path.package" with the new
17+ public function "path.package".
18+
19+
20+ Changes in 2.13.0 (2012-09-20)
21+ -----------------------------
22+
23+ New features:
24+
25+ - New 'duplicated2' function which returns TRUE for *all* elements
26+ that are duplicated, including the first, contributed by Liviu
27+ Andronic. This differs from 'duplicated', which only returns the
28+ second and following (second-to last and previous when
29+ 'fromLast=TRUE') duplicate elements.
30+
31+ - New 'ans' functon to return the value of the last evaluated
32+ top-level function (a convenience function for accessing
33+ .Last.value), contributed by Liviu Andonic.
34+
35+ Bug Fixes:
36+
37+ - On windows, warning messages printed to stdout by perl were being
38+ included in the return value from 'system', resulting in errors in
39+ 'sheetCount' and 'sheetNames'. Corrected.
40+
41+ - The 'MedUnits' column names 'SIUnits' and 'ConventionalUnits' were
42+ reversed and misspelled.
43+
44+
45+ Changes in 2.12.0 (2012-09-12)
246------------------------------
347
448Other Changes:
549
650- 'stats::aggregate' was made into a generic on 27-Jan-2010, so that
751 attempting to call 'aggregate' on a 'table' object will now
852 incorrectly call 'aggregate.table'. Since 'aggregate.table' can be
9- replaced by a call to tapply using two index vectors, e.g.
10- aggregate.table(x, by1=a, by2=b, mean)
11- can be replaced by
53+ replaced by a call to tapply using two index vectors, e.g.
54+ aggregate.table(x, by1=a, by2=b, mean)
55+ can be replaced by
1256 tapply(x, INDEX=list(a, b), FUN=mean),
1357 the 'aggregate.table' function will now display a warning that it
1458 is depreciated and recommending the equivalent call to tapply. It
1559 will be removed entirely in a future version of gdata.
1660
17- Changes in 2.11.1 (2012-09 -22)
61+ Changes in 2.11.1 (2012-08 -22)
1862------------------------------
1963
2064Enhancements:
@@ -136,7 +180,7 @@ CHANGES IN 2.8.1 (2011-04-15)
136180
137181Enhancements:
138182
139- - nPairs() gains a summary method that shows how many times each variable
183+ - nPairs() gains a summary method that shows how many times each variable
140184 is known, while the other variable of a pair is not
141185
142186Bug fixes:
@@ -197,7 +241,7 @@ Bug Fixes:
197241 build issues, particularly on Windows.
198242
199243- All perl code can now operate (but generate warnings) when perl modules Compress::Raw::Zlib and
200- Spreadsheet::XLSX when are not installed.
244+ Spreadsheet::XLSX when are not installed.
201245
202246- Also update Greg's email address.
203247
@@ -206,8 +250,8 @@ CHANGES IN 2.7.1 (2010-02-19)
206250
207251Enhancements:
208252
209- - on Windows attempts to locate ActiveState perl if perl= not specified and
210- Rtools perl would have otherwise been used in read.xls and other perl
253+ - on Windows attempts to locate ActiveState perl if perl= not specified and
254+ Rtools perl would have otherwise been used in read.xls and other perl
211255 dependent functions.
212256
213257CHANGES IN 2.7.0 (2010-01-25)
@@ -235,7 +279,7 @@ Enhancements:
235279
236280New Functions:
237281
238- - sheetCount() and sheetNames() to determine the number and names of
282+ - sheetCount() and sheetNames() to determine the number and names of
239283 worksheets in an Excel file, respectively.
240284
241285Bug Fixes:
@@ -260,7 +304,7 @@ CHANGES IN 2.6.0 (2009-07-15)
260304Bug Fixes
261305
262306- Correct minor typos & issues in man pages for write.fwf(),
263- resample() (Greg Warnes)
307+ resample() (Greg Warnes)
264308
265309- Correct calculation of object sizes in env() and ll() (Gregor Gorjanc)
266310
@@ -272,20 +316,20 @@ New Features
272316- Enhanced function object.size that returns the size of multiple
273317 objects. There is also a handy print method that can print size of
274318 an object in "human readable" format when
275- options(humanReadable=TRUE)
276- or
277- print(object.size(x), humanReadable=TRUE).
278- (Gregor Gorjanc)
319+ options(humanReadable=TRUE)
320+ or
321+ print(object.size(x), humanReadable=TRUE).
322+ (Gregor Gorjanc)
279323
280324- New function wideByFactor that reshapes given dataset by a given
281- factor - it creates a "multivariate" data.frame. (Gregor Gorjanc)
325+ factor - it creates a "multivariate" data.frame. (Gregor Gorjanc)
282326
283327- New function nPairs that gives the number of variable pairs in a
284- data.frame or a matrix. (Gregor Gorjanc)
328+ data.frame or a matrix. (Gregor Gorjanc)
285329
286330- New functions getYear, getMonth, getDay, getHour, getMin, and getSec
287331 for extracting the date/time parts from objects of a date/time
288- class. (Gregor Gorjanc)
332+ class. (Gregor Gorjanc)
289333
290334- New function bindData that binds two data frames into a multivariate
291335 data frame in a different way than merge. (Gregor Gorjanc)
@@ -307,7 +351,7 @@ CHANGES IN 2.5.0
307351
308352- New function bindData that binds two data frames into a multivariate data frame
309353 in a different way than merge.
310-
354+
311355- New function wideByFactor that reshapes given dataset by a given factor -
312356 it creates a "multivariate" data.frame.
313357
@@ -321,7 +365,7 @@ CHANGES IN 2.5.0
321365
322366- New function cbindX that can bind objects with different number of rows.
323367
324- - write.fwf gains the width argument. The value for unknown can increase or
368+ - write.fwf gains the width argument. The value for unknown can increase or
325369 decrease the width of the columns. Additional tests and documentation fixes.
326370
327371CHANGES IN 2.4.2 (2008-05-11)
0 commit comments