Skip to content
Prev 256348 / 398506 Next

multinom() residual deviance

The residual deviance from a multinomial model is numerically equal (up to round-off error) to that you would get had you fitted the model as a surrogate Poisson generalized linear model.  Here is a short demo building on your example
+                  x = rnorm(500))
# weights:  9 (4 variable)
initial  value 549.306144 
final  value 548.246724 
converged
+              a <- factor(a))
[1] 1096.493
[1] 1096.493
Bill Venables