if (!requireNamespace("remotes", quietly = TRUE)) {
install.packages("remotes")
}::install_github("certara/mbbe") remotes
install.packages("mbbe")
Funded by FDA/NIH grant 1U01FD007355 - Model Based Bioequivalence
$TABLE
, including treatment and sequence.Command to run is:
library(mbbe)
run_mbbe_json("Args.json")
Where Args.json is the path to the json file with the arguments. An example of the contents of an Args.json file is below:
{
"run_dir": "c:/fda/mbbe/",
"model_source": "u:/fda/mbbe/mbbe/",
"nmodels": 2,
"ngroups": 4,
"samp_size": 8,
"reference_groups": [1,2],
"test_groups": [3,4],
"numParallel": 16,
"crash_value": 999999,
"nmfe_path": "c:/nm744/util/nmfe74.bat",
"delta_parms": 0.1,
"use_check_identifiable": true,
"NCA_end_time": 72,
"rndseed": 1,
"use_simulation_data": true,
"simulation_data_path": "U:/fda/mbbe/mbbe/data_sim.csv"
}