View source: R/engine_params.r
engineParams | R Documentation |
Use to define extra engine parameters for model execution.
engineParams(
model,
sort = NULL,
ODE = "MatrixExponent",
rtolODE = 1e-06,
atolODE = 1e-06,
maxStepsODE = 50000,
numIterations = 1000,
method = NULL,
stdErr = NULL,
isCentralDiffStdErr = TRUE,
stepSizeStdErr = NULL,
numIntegratePtsAGQ = 1,
numIterNonParametric = 0,
allowSyntheticGradient = FALSE,
numIterMAPNP = 0,
numRepPCWRES = 0,
stepSizeLinearize = 0.002,
numDigitLaplacian = 7,
numDigitBlup = 13,
mapAssist = 0,
iSample = 300,
iAcceptRatio = 0.1,
impDist = "Normal",
tDOF = 4,
numSampleSIR = 10,
numBurnIn = 0,
freezeOmega = FALSE,
MCPEM = FALSE,
runAllIterations = FALSE,
scramble = "Owen",
stepSizePartialDeriv = 1e-05,
numTimeStepPartialDeriv = 20
)
model |
Model object |
sort |
Logical; Specifying whether or not to sort the input data by subject and time values.
|
ODE |
Character; Specifying the solver used to numerically solve Ordinary Differential Equations (ODEs). Options are '"MatrixExponent"', '"Higham"', '"DVERK"', '"DOPRI5"', '"AutoDetect"', '"Stiff"'. See Details section. |
rtolODE |
Numeric; Specifying relative tolerance for the numerical ODE solver. |
atolODE |
Numeric; Specifying absolute tolerance for the numerical ODE solver. |
maxStepsODE |
Numeric; Specifying maximum number of allowable steps or function evaluations for the ODE solver. |
numIterations |
Numeric; Specifying maximum number of iterations for estimation. |
method |
Character; Specifying engine method for estimation. For population models,
options are Note: For population models, if |
stdErr |
Character; Specifying method for standard error computations.
Here |
isCentralDiffStdErr |
Logical; Default |
stepSizeStdErr |
Numeric; Specifying the step size used for |
numIntegratePtsAGQ |
Numeric; Specifying the number of integration points
for adaptive Gaussian quadrature (AGQ) algorithm. Only applicable to population models with
|
numIterNonParametric |
Numeric; Specifying the number of iterations to perform non-parametric estimation.
Only applicable to population models when |
allowSyntheticGradient |
Logical, Set to |
numIterMAPNP |
Numeric; Specifying the number of iterations
to perform Maximum A Posterior (MAP) initial Naive Pooling (NP) run before estimation.
Only applicable to population models when |
numRepPCWRES |
Numeric; Specifying the number of replicates to generate the PCWRES
after the simple estimation. Only applicable to population models when |
stepSizeLinearize |
Numeric; Specifying the step size used for numerical differentiation when linearizing the model function during the estimation process. |
numDigitLaplacian |
Numeric; Specifying the number of significant decimal digits for the Laplacian algorithm to use to reach convergence. Only applicable to population models. |
numDigitBlup |
Numeric; Specifying the number of significant decimal digits for the individual estimation to use to reach convergence. Only applicable to population models. |
mapAssist |
Numeric; Specifying the period used to perform MAP assistance ( |
iSample |
Numeric; Specifying the number of samples. Only applicable to population models with |
iAcceptRatio |
Numeric; Specifying the acceptance ratio. Only applicable to population models with |
impDist |
Character; Specifying the distribution used for important sampling, and options are
|
tDOF |
Numeric; Specifing the degree of freedom (allowed value is between 3 and 30) for T distribution.
Only applicable to population models with |
numSampleSIR |
Numeric; Specifying the number of samples per subject used
in the Sampling Importance Re-Sampling (SIR) algorithm to determine the number of SIR samples
taken from the empirical discrete distribution that approximates the target conditional distribution.
Only applicable to population models with |
numBurnIn |
Numeric; Specifying the number of burn-in iterations to perform at startup
to adjust certain internal parameters. Only applicable to population models with |
freezeOmega |
Logical; Set to |
MCPEM |
Logical; Set to |
runAllIterations |
Logical; Set to |
scramble |
Character; Specifying the quasi-random scrambling method to use,
and options are |
stepSizePartialDeriv |
Numeric; Specifying the step size used to numerically calculate the partial derivatives of observed variables with respect to parameters. Only applicable to individual models. |
numTimeStepPartialDeriv |
Numeric; Specifying the number of time steps used to output the partial derivatives of observed variables with respect to parameters. Only applicable to individual models. |
Both '"DVERK"' and '"DOPRI5"' are non-stiff solvers. '"Higham"' is a matrix exponent based ODE solver which could be useful when overscaling issue should be avoided, i.e. the ratio between observed values and doses is too high or too low. '"AutoDetect"' represents LSODA solver implemenation, which solves the initial value problem for stiff or nonstiff systems of first order ordinary differential equations. '"Stiff"' is a LSODE (Livermore solver). It is best suited for stiff problems.
List of engine parameters to be used during fitting or simulation
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.