cm3 {migest} | R Documentation |
Conditional maximization routine for the indirect estimation of origin-destination-migrant type migration flow tables with known origin and destination margins.
Description
The cm3
function finds the maximum likelihood estimates for parameters in the log-linear model:
\log y_{ijk} = \log \alpha_{i} + \log \beta_{j} + \log m_{ijk}
as introduced by Abel (2005). The \alpha_{i}
and \beta_{j}
represent background information related to the characteristics of the origin and destinations respectively. The m_{ijk}
factor represents auxiliary information on origin-destination migration flows by a migrant characteristic (such as age, sex, disability, household type, economic status, etc.). This method is useful for combining data from detailed data collection processes (such as a Census) with more up-to-date information on migration inflows and outflows (where details on movements by migrant characteristics are not known).
Usage
cm3(
row_tot = NULL,
col_tot = NULL,
m = NULL,
tol = 1e-06,
maxit = 500,
verbose = TRUE
)
Arguments
row_tot |
Vector of origin totals to constrain the sum of the imputed cell rows. |
col_tot |
Vector of destination totals to constrain the sum of the imputed cell columns. |
m |
Array of auxiliary data. By default set to 1 for all origin-destination-migrant typology combinations. |
tol |
Numeric value for the tolerance level used in the parameter estimation. |
maxit |
Numeric value for the maximum number of iterations used in the parameter estimation. |
verbose |
Logical value to indicate the print the parameter estimates at each iteration. By default |
Value
Parameter estimates were obtained using the conditional maximization of the likelihood, as discussed by Abel (2005) and Raymer et. al. (2007).
The user must ensure that the row and column totals are equal in sum. Care must also be taken to allow the row and column dimension of the auxiliary matrix (m
) to equal those provided in the row and column totals.
Returns a list
object with
N |
Origin-Destination matrix of indirect estimates |
theta |
Collection of parameter estimates |
Author(s)
Guy J. Abel
References
Abel, G. J. (2005) The Indirect Estimation of Elderly Migrant Flows in England and Wales (MS.c. Thesis). University of Southampton
Raymer, J., G. J. Abel, and P. W. F. Smith (2007). Combining census and registration data to estimate detailed elderly migration flows in England and Wales. Journal of the Royal Statistical Society: Series A (Statistics in Society) 170 (4), 891–908.
See Also
Examples
## over two tables
r <- LETTERS[1:2]
y <- cm3(row_tot = c(18, 20) * 2, col_tot = c(16, 22) * 2,
m = array(c(5, 1, 2, 7, 4, 2, 5, 9), dim = c(2, 2, 2),
dimnames = list(orig = r, dest = r, type = c("ILL", "HEALTHY"))))
# display with row, col and table totals
y
## over three tables
y <- cm3(row_tot = c(170, 120, 410), col_tot = c(500, 140, 60),
m = array(c(5, 1, 2, 7, 4, 2, 5, 9, 5, 4, 3, 1), dim = c(2, 2, 3),
dimnames = list(orig = r, dest = r, type = c("0--15", "15-60", ">60"))),
verbose = FALSE)
# display with row, col and table totals
y