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

value of forceBase (can change if data.table is not available)

Examples

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