Sorting: order R vector in-RAM and in-place
Function ramorder
will order the input vector in-place (without making a copy) and return the number of NAs found
## Default S3 method: ramorder(x, i, has.na = TRUE, na.last = TRUE, decreasing = FALSE , stable = TRUE, optimize = c("time", "memory"), VERBOSE = FALSE, ...) ## Default S3 method: mergeorder(x, i, has.na = TRUE, na.last = TRUE, decreasing = FALSE, ...) ## Default S3 method: radixorder(x, i, has.na = TRUE, na.last = TRUE, decreasing = FALSE, ...) ## Default S3 method: keyorder(x, i, keyrange=range(x, na.rm=has.na), has.na = TRUE, na.last = TRUE , decreasing = FALSE, ...) ## Default S3 method: shellorder(x, i, has.na = TRUE, na.last = TRUE, decreasing = FALSE, stabilize=FALSE, ...)
x |
an atomic R vector |
i |
a integer vector with a permuation of positions in x (you risk a crash if you violate this) |
keyrange |
an integer vector with two values giving the smallest and largest possible value in x, note that you should give this explicitely for best performance, relying on the default needs one pass over the data to determine the range |
has.na |
boolean scalar telling ramorder whether the vector might contain |
na.last |
boolean scalar telling ramorder whether to order |
decreasing |
boolean scalar telling ramorder whether to order increasing or decreasing |
stable |
set to false if stable ordering is not needed (may enlarge the set of ordering methods considered) |
optimize |
by default ramorder optimizes for 'time' which requires more RAM, set to 'memory' to minimize RAM requirements and sacrifice speed |
VERBOSE |
cat some info about chosen method |
stabilize |
Set to |
... |
ignored |
Function ramorder
is a front-end to a couple of single-threaded ordering algorithms
that have been carefully implemented to be fast with and without NA
s.
The default is a mergeorder algorithm without copying (Sedgewick 8.4) for integer and double data
which requires 2x the RAM of its input vector (character or complex data are not supported).
Mergeorder is fast, stable with a reliable runtime.
For integer data longer than a certain length we improve on mergeorder by using a faster LSD
radixorder algorithm (Sedgewick 10.5) that uses 2x the RAM of its input vector plus 65536+1 integers.
For booleans, logicals, integers at or below the resolution of smallint and for factors below a certain number of levels
we use a key-index order instead of mergeorder or radix order
(note that R has a (slower) key-index order in sort.list
available with confusingly named method='radix'
but the standard order
does not leverage it for factors (2-11.1).
If you call keyorder
directly, you should provide a known 'keyrange' directly to obtain the full speed.
Finally the user can request a order method that minimizes memory use at the price of longer computation time
with optimize='memory'
– currently a shellorder.
integer scalar with the number of NAs. This is always 0 with has.na=FALSE
This function is called for its side-effects and breaks the functional programming paradigm. Use with care.
Jens Oehlschlägel
Robert Sedgewick (1997). Algorithms in C, Third edition. Addison-Wesley.
n <- 50 x <- sample(c(NA, NA, 1:26), n, TRUE) order(x) i <- 1:n ramorder(x, i) i x[i] ## Not run: message("Note how the datatype influences sorting speed") n <- 1e7 x <- sample(1:26, n, TRUE) y <- as.double(x) i <- 1:n system.time(ramorder(y, i)) y <- as.integer(x) i <- 1:n system.time(ramorder(y, i)) y <- as.short(x) i <- 1:n system.time(ramorder(y, i)) y <- factor(letters)[x] i <- 1:n system.time(ramorder(y, i)) ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.