Auxiliary function for the numerical integration used in the likelihood and composite likelihood functions. Typically only used internally by 'fitMR' and 'fitMRH'.
integr.control(
rel.tol = .Machine$double.eps^0.25,
abs.tol = rel.tol,
subdivisions = 100L
)
A list with components named as the arguments.
relative accuracy requested.
absolute accuracy requested.
the maximum number of subintervals.
The arguments are the same as integrate
, but passed
down to the C API of Rdqags used by integrate
.