conv.test {addreg} | R Documentation |
Performs a test of convergence based on the L2 norm of the change in the parameter estimates.
conv.test(theta1, theta2, epsilon)
theta1 |
vector of parameter estimates at previous step. |
theta2 |
vector of parameter estimates at current step. |
epsilon |
positive convergence tolerance. |
This is used as the convergence test in the
addreg
fitting functions, because the EM
algorithm may converge slowly such that the test based on
the deviance used in glm.fit
(see
glm.control
) may report convergence at a
point away from the actual optimum.
A logical; TRUE
if
sqrt(sum((theta1-theta2)**2))/sqrt(sum(theta1**2)) <
epsilon
, FALSE
otherwise.
Mark W. Donoghoe markdonoghoe@gmail.com
theta.old <- c(4,5,6)
theta.new <- c(4.05,5,6)
conv.test(theta.old, theta.new, 0.01)
conv.test(theta.old, theta.new, 0.005)