Returns a one-row data frame summarizing model fit, compatible with
modelsummary::modelsummary().
Usage
# S3 method for class 'uncounted'
glance(x, ...)Value
A one-row data frame with columns: method, nobs,
logLik, AIC, BIC, deviance,
df.residual, gamma, theta.
Examples
data(irregular_migration)
d <- irregular_migration[irregular_migration$year == "2019", ]
fit <- estimate_hidden_pop(d, ~ m, ~ n, ~ N, method = "poisson",
gamma = 0.005)
glance(fit)
#> method nobs logLik AIC BIC deviance df.residual
#> 1 POISSON 203 -1011.373 2026.747 2033.373 1560.452 201
