Last chance! 50% off unlimited learning
Sale ends in
## S3 method for class 'zeroinfl':
summary(object, ...) ## S3 method for class 'summary.zeroinfl':
print(x,
digits = max(3, getOption("digits") - 3),
...)
"zeroinfl"
, usually a result of a
call to zeroinfl
"summary.zeroinfl"
, usually a
result of a call to summary.zeroinfl
summary.zeroinfl
computes and returns a list of
summary statistics from the zero-inflated regression model, includingprint.summary.zeroinfl
tries to be smart about formatting the
display of the MLEs, standard errors, etc, essentially using the same
code as appears in link{print.summary.lm}
zeroinfl
, predict.zeroinfl
Methods are supplied for the generic functions link{coef}
and
link{logLik}
, for objects of class "zeroinfl"
.
data(bioChemists)
zip <- zeroinfl(count=art ~ .,
x = ~ fem + mar + kid5 + phd + ment,
z = ~ fem + mar + kid5 + phd + ment,
data=bioChemists,trace=TRUE)
summary(zip)
coef(zip)
logLik(zip)
Run the code above in your browser using DataLab