Change the default combine type for the package
Usage
setCombineType(combineType = c("snake", "camel", "dot", "blank"))
Examples
# Change to the popular snake_case
setCombineType("snake")
defaultCombine("a", "b")
#> [1] "a_b"
# Change back to nlmixr2/rxode2 default camelCase
setCombineType("camel")
defaultCombine("a", "b")
#> [1] "aB"
# This is used to change the naming convention for parameters
# produced by this package