View source: R/param_info_functions.R
complete_init_values | R Documentation |
Complete initial values in param_info by sampling values from bounds taking into account inequality constraints between parameters
complete_init_values(
param_info,
nb_values,
ranseed = NULL,
satisfy_par_const = NULL
)
param_info |
Information on the parameters to estimate. Either a list containing:
or a named list containing for each parameter:
|
nb_values |
Total number of initial values required for the parameters |
ranseed |
Set random seed so that each execution give the same results. If you want randomization, set it to NULL |
satisfy_par_const |
User function for including constraints on estimated parameters (optional), see details section for more information. |
A list similar to param_info including nb_values initial values. If param_info initially contains less than nb_values initial values, additional ones are randomly sampled in the defined bounds taking into account the possible constraints between the parameters.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.