Skip to contents

The JSON config file should have two entries:

For interpretation of the entries, please read setup_alternative_trace.

Usage

get_config_alternative_trace(path)

Arguments

path

a file path to a JSON file

Value

a named list

Examples

# to see an example of proper JSON input, run the following
library(jsonlite)
par <- list(
 "O" = rep(1, 5)
)
toJSON(par, pretty = TRUE)
#> {
#>   "O": [1, 1, 1, 1, 1]
#> }