Thread: [R-gregmisc-users] SF.net SVN: r-gregmisc:[1347] trunk/gdata/inst/NEWS
Brought to you by:
warnes
From: <wa...@us...> - 2009-07-16 03:11:18
|
Revision: 1347 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1347&view=rev Author: warnes Date: 2009-07-16 03:10:52 +0000 (Thu, 16 Jul 2009) Log Message: ----------- Update ChangeLog and NEWS for gdata 2.6.0 release Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2009-07-16 02:56:35 UTC (rev 1346) +++ trunk/gdata/inst/NEWS 2009-07-16 03:10:52 UTC (rev 1347) @@ -1,6 +1,47 @@ -CHANGES IN 2.5.0 (2009-??-??) +CHANGES IN 2.6.0 (2009-07-15) ----------------------------- +Bug Fixes + +- Correct minor typos & issues in man pages for write.fwf(), + resample() (Greg Warnes) + +- Correct calculation of object sizes in env() and ll() (Gregor Gorjanc) + +New Features + +- Add support for using tab for field separator during translation + from xls format in read.xls (Greg Warnes) + +- Enhanced function object.size that returns the size of multiple + objects. There is also a handy print method that can print size of + an object in "human readable" format when + options(humanReadable=TRUE) + or + print(object.size(x), humanReadable=TRUE). + (Gregor Gorjanc) + +- New function wideByFactor that reshapes given dataset by a given + factor - it creates a "multivariate" data.frame. (Gregor Gorjanc) + +- New function nPairs that gives the number of variable pairs in a + data.frame or a matrix. (Gregor Gorjanc) + +- New functions getYear, getMonth, getDay, getHour, getMin, and getSec + for extracting the date/time parts from objects of a date/time + class. (Gregor Gorjanc) + +- New function bindData that binds two data frames into a multivariate + data frame in a different way than merge. (Gregor Gorjanc) + +Other Changes + +- Correct Greg's email address + + +CHANGES IN 2.5.0 +---------------- + - New function .runRUnitTestsGdata that enables run of all RUnit tests during the R CMD check as well as directly from within R. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ggr...@us...> - 2010-01-24 02:05:58
|
Revision: 1388 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1388&view=rev Author: ggrothendieck2 Date: 2010-01-24 02:05:51 +0000 (Sun, 24 Jan 2010) Log Message: ----------- fixed spacing problem in NEWS Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2010-01-23 07:11:46 UTC (rev 1387) +++ trunk/gdata/inst/NEWS 2010-01-24 02:05:51 UTC (rev 1388) @@ -200,7 +200,7 @@ - DESCRIPTION: Added Suggests field - - Updated the example in frameApply +- Updated the example in frameApply CHANGES IN GDATA 2.0.8 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-01-26 04:12:08
|
Revision: 1413 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1413&view=rev Author: warnes Date: 2010-01-26 04:12:00 +0000 (Tue, 26 Jan 2010) Log Message: ----------- Fix typos Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2010-01-26 04:11:29 UTC (rev 1412) +++ trunk/gdata/inst/NEWS 2010-01-26 04:12:00 UTC (rev 1413) @@ -16,14 +16,12 @@ New Functions: - sheetCount() and sheetNames() to determine the number and names of - worksheets in an Excel file, respecively. + worksheets in an Excel file, respectively. Bug Fixes: - Fix formatting warning in frameApply(). -- Modify unit tests to avoid issues related to zime zones. - - Resolve crash of "ll(.GlobalEnv)" - @@ -33,7 +31,7 @@ Bug Fixes -- Modify unit tests to avoid issues related to zime zones. +- Modify unit tests to avoid issues related to time zones. CHANGES IN 2.6.0 (2009-07-15) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-05-03 13:48:48
|
Revision: 1438 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1438&view=rev Author: warnes Date: 2010-05-03 13:48:39 +0000 (Mon, 03 May 2010) Log Message: ----------- Update news for gdata 2.8.0 Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2010-05-03 13:35:11 UTC (rev 1437) +++ trunk/gdata/inst/NEWS 2010-05-03 13:48:39 UTC (rev 1438) @@ -1,7 +1,45 @@ -CHANGES IN 2.7.0 (2010-02-19) +CHANGES IN 2.8.0 (2010-04-03) +----------------------------- Enhancements: +- When loaded, gtools (via an .onAttach() function) now checks: + 1) if perl is available + 2) whether the perl libraries for XLS support are available + 3) whether the perl libraries for XLSX support are available + + If perl is not available, an appropriate warning message is displayed. + + If necessary perl libraries are not available, a warning message is + displayed, as is a message suggesting the user run the (new) + installXLSXModules() function to attempt to install the necessary + perl libraries. + + +CHANGES IN 2.7.3 (2010-04-02) +----------------------------- + +Enhancements: + +- New xlsFormats() command to determine which Excel formats are + supported (XLS, XLSX). + +Bug Fixes: + +- No longer attempt to install perl modules Compress::Raw::Zlib and + Spreadsheet::XLSX at build/compile time. This should resolve recent + build issues, particularly on Windows. + +- All perl code can now operate (but generate warnings) when perl modules Compress::Raw::Zlib and + Spreadsheet::XLSX when are not installed. + +- Also update Greg's email address. + +CHANGES IN 2.7.1 (2010-02-19) +----------------------------- + +Enhancements: + - on Windows attempts to locate ActiveState perl if perl= not specified and Rtools perl would have otherwise been used in read.xls and other perl dependent functions. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2010-11-12 19:14:12
|
Revision: 1462 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1462&view=rev Author: warnes Date: 2010-11-12 19:14:06 +0000 (Fri, 12 Nov 2010) Log Message: ----------- Update NEWS for gdata 2.8.1 Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2010-11-12 19:09:00 UTC (rev 1461) +++ trunk/gdata/inst/NEWS 2010-11-12 19:14:06 UTC (rev 1462) @@ -1,3 +1,19 @@ +CHANGES IN 2.8.1 (2010-11-12) +----------------------------- + +Enhancements: + +- Minor improvement to Args(), read.xls() man page. + +Bug fixes: + +- Modify write.fwf() to capture and pass on additional arguments for + write.table(). This resolves a bug reported by Jan Wijffels. + +- Modify xls2sep.R to avoid use of file.access() which is unreliable + on Windows network shares. + + CHANGES IN 2.8.0 (2010-04-03) ----------------------------- @@ -15,9 +31,9 @@ installXLSXsupport() function to attempt to install the necessary perl libraries. -- The function function installXLSXsupport() has been provided to - install the binary perl modules that read.xls needs to support Excel - 2007+ 'XLSX' files. +- The function installXLSXsupport() has been provided to install the + binary perl modules that read.xls needs to support Excel 2007+ + 'XLSX' files. CHANGES IN 2.7.3 (2010-04-02) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2011-09-30 19:09:59
|
Revision: 1515 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1515&view=rev Author: warnes Date: 2011-09-30 19:09:53 +0000 (Fri, 30 Sep 2011) Log Message: ----------- Update DESCRIPTION and README for 2.9.0 release. Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2011-09-30 19:09:17 UTC (rev 1514) +++ trunk/gdata/inst/NEWS 2011-09-30 19:09:53 UTC (rev 1515) @@ -1,3 +1,18 @@ +Changes in 2.9.0 (2011-09-30) +----------------------------- + +New features: + +- Add centerText() function to center text strings for a specified + width. + +- Add case() function, a vectorized variant of the base::switch() + function, which is useful for converting numeric codes into factors. + +Enhancements: + +- Minor improvements to xls2csv() man page. + CHANGES IN 2.8.1 (2011-04-15) ----------------------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2012-06-18 20:32:16
|
Revision: 1567 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1567&view=rev Author: warnes Date: 2012-06-18 20:32:10 +0000 (Mon, 18 Jun 2012) Log Message: ----------- Update NEWS for 2.11.0 release. Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2012-06-18 20:27:16 UTC (rev 1566) +++ trunk/gdata/inst/NEWS 2012-06-18 20:32:10 UTC (rev 1567) @@ -1,3 +1,21 @@ +Changes in 2.11.0 (2012-06-18) +------------------------------ + +New Features: + +- read.xls() and supporting functions now allow blank lines to be + preserved, rather than skipped, by supplying the argument + "blank.lines.skip=FALSE". The underlying perl function has been + extended to suppor this via an optional "-s" argument which, when + present, *preserves* blank lines during the conversion. (The + default behavior remains unchanged.) + +Other Changes: + +- Add SystemRequirements field specifying that perl is necessary for + gdata to function fully. + + Changes in 2.10.6 (2012-06-12) ------------------------------ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2013-03-24 04:36:48
|
Revision: 1644 http://sourceforge.net/p/r-gregmisc/code/1644 Author: warnes Date: 2013-03-24 04:36:45 +0000 (Sun, 24 Mar 2013) Log Message: ----------- Fix formatting in NEWS Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2013-03-24 04:34:45 UTC (rev 1643) +++ trunk/gdata/inst/NEWS 2013-03-24 04:36:45 UTC (rev 1644) @@ -3,7 +3,8 @@ Enhancements: -- Replaced calls to depreciated function ".path.package" with the new public function "path.package". +- Replaced calls to depreciated function ".path.package" with the new + public function "path.package". Changes in 2.13.0 (2012-09-20) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2013-06-28 21:31:17
|
Revision: 1685 http://sourceforge.net/p/r-gregmisc/code/1685 Author: warnes Date: 2013-06-28 21:31:14 +0000 (Fri, 28 Jun 2013) Log Message: ----------- Update NEWS for gdata 2.13.2 Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2013-06-28 21:24:52 UTC (rev 1684) +++ trunk/gdata/inst/NEWS 2013-06-28 21:31:14 UTC (rev 1685) @@ -1,3 +1,13 @@ +Changes in 2.13.2 (2013-06-28) +------------------------------ + +Enhancements: + +- Modify ll() function to use on.exit() to ensure that detach() occurs + after attach() even when an error is encoundered during execution. + +- Working of deprecation warning message in aggregate.table clarified. + Changes in 2.13.1 (2013-03-24) ------------------------------ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2013-06-29 01:40:51
|
Revision: 1692 http://sourceforge.net/p/r-gregmisc/code/1692 Author: warnes Date: 2013-06-29 01:40:47 +0000 (Sat, 29 Jun 2013) Log Message: ----------- Update NEWS for second try for gdata 2.13.2 Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2013-06-29 01:37:19 UTC (rev 1691) +++ trunk/gdata/inst/NEWS 2013-06-29 01:40:47 UTC (rev 1692) @@ -3,8 +3,8 @@ Enhancements: -- Modify ll() function to use on.exit() to ensure that detach() occurs - after attach() even when an error is encoundered during execution. +- Simplify ll() by converting a passed list to an environment, + avoiding the need for special casing and the use of attach/detach. - Working of deprecation warning message in aggregate.table clarified. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2014-04-05 14:40:11
|
Revision: 1791 http://sourceforge.net/p/r-gregmisc/code/1791 Author: warnes Date: 2014-04-05 14:40:08 +0000 (Sat, 05 Apr 2014) Log Message: ----------- Update NEWS file Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2014-04-05 14:38:45 UTC (rev 1790) +++ trunk/gdata/inst/NEWS 2014-04-05 14:40:08 UTC (rev 1791) @@ -8,8 +8,9 @@ Other Changes -- Unit tests now follow R standard practice +- 'aggregate.table' is now defunct. See '?gdata-defunct' for details. +- Unit tests and vignettes now follow R standard practice. Changes in 2.13.2 (2013-06-28) ------------------------------ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2014-04-05 18:41:53
|
Revision: 1800 http://sourceforge.net/p/r-gregmisc/code/1800 Author: warnes Date: 2014-04-05 18:41:50 +0000 (Sat, 05 Apr 2014) Log Message: ----------- Update NEWS with latest changes Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2014-04-05 18:38:23 UTC (rev 1799) +++ trunk/gdata/inst/NEWS 2014-04-05 18:41:50 UTC (rev 1800) @@ -12,6 +12,8 @@ - Unit tests and vignettes now follow R standard practice. +- Minor changes to clean up R CMD check warnings. + Changes in 2.13.2 (2013-06-28) ------------------------------ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2015-04-25 17:13:08
|
Revision: 1973 http://sourceforge.net/p/r-gregmisc/code/1973 Author: warnes Date: 2015-04-25 17:13:07 +0000 (Sat, 25 Apr 2015) Log Message: ----------- Fix spelling errors & typos Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2015-04-25 16:54:38 UTC (rev 1972) +++ trunk/gdata/inst/NEWS 2015-04-25 17:13:07 UTC (rev 1973) @@ -3,13 +3,13 @@ New features: -- New functions first() and last() to retrun the first or last +- New functions first() and last() to return 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. -- New 'scienfic' argument to write.fwf(). Set 'scientific=FALSE' to +- New 'scientific' argument to write.fwf(). Set 'scientific=FALSE' to prevent numeric columns from being displayed using scientific notification. @@ -24,7 +24,7 @@ - New 'units' argument to humanReadable()--and hence to print.object_sizes() and format.object_sizes()--that permits specifying the unit to use for all values. Use 'bytes' to display - all valus with the unit 'bytes', use 'auto' (or leave it missing) to + all values with the unit 'bytes', use 'auto' (or leave it missing) to automatically select the best unit, and use a unit from the selected standard to use that unit (i.e. 'MiB'). @@ -45,13 +45,13 @@ Other changes: -- Replaced depricated PERL function POSIX::isdigit in xls2csv.pl +- Replaced deprecated PERL function POSIX::isdigit in xls2csv.pl (which is used by read.xls() ) with an equivalent regular expression. (Reported by both Charles Plessy, Gerrit-jan Schutten, and Paul Johnson. Charles also provided a patch to correct the issue.) -- aggregate.table(), which has been defuct gdate 2.13.3 (2014-04-04) +- aggregate.table(), which has been defunct gdate 2.13.3 (2014-04-04) has now been completely removed. 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. |
From: <wa...@us...> - 2015-04-28 21:11:50
|
Revision: 1987 http://sourceforge.net/p/r-gregmisc/code/1987 Author: warnes Date: 2015-04-28 21:11:47 +0000 (Tue, 28 Apr 2015) Log Message: ----------- Update NEWS for gdata 2.16.1 Modified Paths: -------------- trunk/gdata/inst/NEWS Modified: trunk/gdata/inst/NEWS =================================================================== --- trunk/gdata/inst/NEWS 2015-04-28 06:28:23 UTC (rev 1986) +++ trunk/gdata/inst/NEWS 2015-04-28 21:11:47 UTC (rev 1987) @@ -1,11 +1,22 @@ -Changes in 2.16.1 (2015-04-25) +Changes in 2.16.1 (2015-04-28) +----------------------------- + +Other changes: + +- Requirement for Perl version 5.10.0 or later is specified in the + package DESCRITION. + +- first() and last() are now simply wrappers for calls to 'head(x, n=1)' and + 'tail(x, n=1)', respectively. + + +Changes in 2.16.0 (2015-04-25) ------------------------------ New features: - New functions first() and last() to return the first or last element - of an object. These are convenience functions for 'head(x, n=1)' and - 'tail(x, n=1)', respectively, + of an object. - New functions left() and right() to return the leftmost or rightmost n (default to 6) columns of a matrix or dataframe. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |