Displaying 1 result from an estimated 1 matches for "kalcount".
Did you mean:
balcount
2002 Jan 03
2
Saving objects in a list and preserving attributes. How to?
I've been writing a bunch of simulation experiments to test models in
MASS (glm.nb) and JK Lindsey's repeated library (gar and kalcount). If
I generate data over and over, and estimate a model for each, I end have
syntax like this:
x <- rnorm(1000)
for (i in 1: nOfRuns){
y <- getPhonyData(x)
estim <- glm.nb(y~x,link="log")
}
Except for problems of nonconvergence and other maximum likelihood
estimation pro...