Thread: [R-gregmisc-users] SF.net SVN: r-gregmisc:[2022] pkg/gtools/man/mixedsort.Rd
Brought to you by:
warnes
From: <wa...@us...> - 2015-05-25 14:05:41
|
Revision: 2022 http://sourceforge.net/p/r-gregmisc/code/2022 Author: warnes Date: 2015-05-25 14:05:38 +0000 (Mon, 25 May 2015) Log Message: ----------- Replace unicode quotes with \code{..}. Modified Paths: -------------- pkg/gtools/man/mixedsort.Rd Modified: pkg/gtools/man/mixedsort.Rd =================================================================== --- pkg/gtools/man/mixedsort.Rd 2015-05-23 22:21:39 UTC (rev 2021) +++ pkg/gtools/man/mixedsort.Rd 2015-05-25 14:05:38 UTC (rev 2022) @@ -19,9 +19,9 @@ \item{decreasing}{logical. Should the sort be increasing or decreasing? Note that \code{descending=TRUE} reverses the meanings of \code{na.lst} and \code{blanks.last}.} - \item{na.last}{for controlling the treatment of ‘NA’s. If ‘TRUE’, missing - values in the data are put last; if ‘FALSE’, they are put - first; if ‘NA’, they are removed.} + \item{na.last}{for controlling the treatment of \code{NA}s. If \code{TRUE}, missing + values in the data are put last; if \code{FALSE}, they are put + first; if \code{NA}, they are removed.} } \details{ I often have character vectors (e.g. factor labels), such as compound This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2015-05-25 14:08:35
|
Revision: 2023 http://sourceforge.net/p/r-gregmisc/code/2023 Author: warnes Date: 2015-05-25 14:08:33 +0000 (Mon, 25 May 2015) Log Message: ----------- Remove '...' from arglist to match source code. Modified Paths: -------------- pkg/gtools/man/mixedsort.Rd Modified: pkg/gtools/man/mixedsort.Rd =================================================================== --- pkg/gtools/man/mixedsort.Rd 2015-05-25 14:05:38 UTC (rev 2022) +++ pkg/gtools/man/mixedsort.Rd 2015-05-25 14:08:33 UTC (rev 2023) @@ -11,8 +11,8 @@ that "a", will come before "B" and "C". } \usage{ -mixedsort(x, decreasing=FALSE, na.last=TRUE, blank.last=FALSE, ...) -mixedorder(x, decreasing=FALSE, na.last=TRUE, blank.last=FALSE, ...) +mixedsort(x, decreasing=FALSE, na.last=TRUE, blank.last=FALSE) +mixedorder(x, decreasing=FALSE, na.last=TRUE, blank.last=FALSE) } \arguments{ \item{x}{Vector to be sorted.} @@ -20,8 +20,8 @@ decreasing? Note that \code{descending=TRUE} reverses the meanings of \code{na.lst} and \code{blanks.last}.} \item{na.last}{for controlling the treatment of \code{NA}s. If \code{TRUE}, missing - values in the data are put last; if \code{FALSE}, they are put - first; if \code{NA}, they are removed.} + values in the data are put last; if \code{FALSE}, they are put + first; if \code{NA}, they are removed.} } \details{ I often have character vectors (e.g. factor labels), such as compound This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2015-05-25 14:10:04
|
Revision: 2024 http://sourceforge.net/p/r-gregmisc/code/2024 Author: warnes Date: 2015-05-25 14:10:01 +0000 (Mon, 25 May 2015) Log Message: ----------- Note characters sorting ignores case. Modified Paths: -------------- pkg/gtools/man/mixedsort.Rd Modified: pkg/gtools/man/mixedsort.Rd =================================================================== --- pkg/gtools/man/mixedsort.Rd 2015-05-25 14:08:33 UTC (rev 2023) +++ pkg/gtools/man/mixedsort.Rd 2015-05-25 14:10:01 UTC (rev 2024) @@ -32,7 +32,8 @@ character and numeric sections, and then sorting along these sections, with numbers being sorted by numeric value (e.g. "50" comes before "100"), followed by characters strings sorted by character - value (e.g. "A" comes before "B"). + value (e.g. "A" comes before "B") \emph{ignoring case} (e.g. 'A' has + the same sort order as 'a'). By default, sort order is ascending, empty strings are sorted to the front, and \code{NA} values to the end. Setting \code{descending=TRUE} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2015-05-25 14:16:19
|
Revision: 2026 http://sourceforge.net/p/r-gregmisc/code/2026 Author: warnes Date: 2015-05-25 14:16:17 +0000 (Mon, 25 May 2015) Log Message: ----------- Add description of blanklast argument, fix typo. Modified Paths: -------------- pkg/gtools/man/mixedsort.Rd Modified: pkg/gtools/man/mixedsort.Rd =================================================================== --- pkg/gtools/man/mixedsort.Rd 2015-05-25 14:13:12 UTC (rev 2025) +++ pkg/gtools/man/mixedsort.Rd 2015-05-25 14:16:17 UTC (rev 2026) @@ -18,10 +18,13 @@ \item{x}{Vector to be sorted.} \item{decreasing}{logical. Should the sort be increasing or decreasing? Note that \code{descending=TRUE} reverses the meanings of - \code{na.lst} and \code{blanks.last}.} - \item{na.last}{for controlling the treatment of \code{NA}s. If \code{TRUE}, missing + \code{na.last} and \code{blanks.last}.} + \item{na.last}{for controlling the treatment of \code{NA} values. If \code{TRUE}, missing values in the data are put last; if \code{FALSE}, they are put first; if \code{NA}, they are removed.} + \item{blanklast}{for controlling the treatment of blank values. If \code{TRUE}, blank + values in the data are put last; if \code{FALSE}, they are put + first; if \code{NA}, they are removed.} } \details{ I often have character vectors (e.g. factor labels), such as compound This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <wa...@us...> - 2015-05-25 14:29:39
|
Revision: 2027 http://sourceforge.net/p/r-gregmisc/code/2027 Author: warnes Date: 2015-05-25 14:29:37 +0000 (Mon, 25 May 2015) Log Message: ----------- Fix typo. Modified Paths: -------------- pkg/gtools/man/mixedsort.Rd Modified: pkg/gtools/man/mixedsort.Rd =================================================================== --- pkg/gtools/man/mixedsort.Rd 2015-05-25 14:16:17 UTC (rev 2026) +++ pkg/gtools/man/mixedsort.Rd 2015-05-25 14:29:37 UTC (rev 2027) @@ -22,7 +22,7 @@ \item{na.last}{for controlling the treatment of \code{NA} values. If \code{TRUE}, missing values in the data are put last; if \code{FALSE}, they are put first; if \code{NA}, they are removed.} - \item{blanklast}{for controlling the treatment of blank values. If \code{TRUE}, blank + \item{blank.last}{for controlling the treatment of blank values. If \code{TRUE}, blank values in the data are put last; if \code{FALSE}, they are put first; if \code{NA}, they are removed.} } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |