Default options for various confidence interval estimation methods used
within the package. These methods are configured via the PIConfiguration
class.
CIOptions_hessian
Default options for the hessian method.
The Hessian matrix is computed via numDeriv::hessian() using the
Richardson method (the only supported method). The r and d options map
directly to method.args of that function.
epsilon: Numerical step size for numerical differentiation. Default isNULL, which applies an adaptive step size based on the parameter values.confLevel: Confidence level for interval estimation. Default is0.95(95% confidence intervals).r: Number of Richardson iterations. Controls the trade-off between accuracy and computation time: approximately(N^2 + N)*robjective function evaluations are performed, whereNis the number of free parameters. Must be at least2. Default isNULL, which usesnumDeriv's default of4.d: Fractional step size. Smaller values reduce the step size relative to the parameter value. Default isNULL, which usesnumDeriv's default of0.1.
CIOptions_PL
Default options for the PL (Profile Likelihood)
method.
epsilon: Numerical step size for profile likelihood adjustments. Default isNULL, which applies an adaptive step size.confLevel: Confidence level for interval estimation. Default is0.95(95% confidence intervals).maxIter: Maximum number of iterations for likelihood profiling. Default is100.