Skip to contents

Force using base order for rxode2 radix sorting

Usage

forderForceBase(forceBase = FALSE)

Arguments

forceBase

boolean indicating if rxode2 should use R's order() for radix sorting instead of data.table's parallel radix sorting.

Value

NILL; called for side effects

Examples

# \donttest{
forderForceBase(TRUE) # Use base `order` for rxode2 sorts
#> NULL
forderForceBase(FALSE) # Use `data.table` for rxode2 sorts
#> NULL
# }