bootstrap | R Documentation |
Runs a bootstrapping on a DAISIE model to determine parameter precision
bootstrap(
daisie_data,
data_name,
model,
array_index,
cond,
methode = "lsodes",
optimmethod = "subplex",
results_dir = NULL,
test = FALSE
)
daisie_data |
A list, conforming to the |
data_name |
String. Will be used for the name of the created output folder. |
model |
A string with model that should run. Models are as follows:
|
array_index |
A single numeric with the array index. It is used for naming the output file. |
cond |
An integer specifying conditioning, as described in
|
methode |
Method of the ODE-solver. Supported Boost |
optimmethod |
Method used in likelihood optimization. Default is
|
results_dir |
A string with the path to the directory where results
are to be stored or can be found. For example, if the data in question
is (to be) stored in |
test |
A boolean, defaults to |
Nothing. Writes bootstrapping results to a .rds
file. This
file is stored in $HOME/results/data_name
if running on the cluster or
/results/data_name
if running locally. The directory is created if it
doesn't exist.
## Not run:
data(Galapagos_datalist, package = "DAISIE")
bootstrap(
daisie_data = Galapagos_datalist,
data_name = "Galapagos_datalist",
model = "cr_dd",
array_index = 1,
cond = 1
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.