fsort.RdSimilar to base::sort but fast using parallelism. Experimental.
fsort(x, decreasing = FALSE, na.last = FALSE, internal=FALSE, verbose=FALSE, ...)A vector. Type double, currently.
Decreasing order?
Control treatment of NAs. If TRUE, missing values in the data are put last; if FALSE, they are put first; if NA, they are removed; if "keep" they are kept with rank NA.
Internal use only. Temporary variable. Will be removed.
Print tracing information.
Not sure yet. Should be consistent with base R.
Process will raise error if x contains negative values.
Unless x is already sorted fsort will redirect processing to slower single threaded order followed by subset in following cases:
data type other than double (numeric)
data having NAs
decreasing==FALSE
The input in sorted order.
x = runif(1e6)
system.time(ans1 <- sort(x, method="quick"))
#> user system elapsed
#> 0.105 0.000 0.107
system.time(ans2 <- fsort(x))
#> user system elapsed
#> 0.034 0.008 0.024
identical(ans1, ans2)
#> [1] TRUE