The resulting coefficient matrix is based on the number of rows in popmat where is assumed that each row of data is a 5-year age group. The final row may be an open or closed age group, as indicated by the OAG argument.

graduate_sprague_expand(Value, Age, OAG = TRUE)

Arguments

Value

numeric vector, presumably counts in grouped ages

Age

integer vector, lower bounds of age groups

OAG

logical, default = TRUE is the final age group open?

Details

The popmat matrix is really just a placeholder in this case. This function is a utility called by the Sprague family of functions, where it is most convenient to just pass in the same matrix being used in those calculations to determine the layout of the coefficient matrix.

References

Sprague TB (1880). “Explanation of a new formula for interpolation.” Journal of the Institute of Actuaries, 22(4), 270--285. Shryock HS, Siegel JS, Larmon EA (1973). The methods and materials of demography. US Bureau of the Census. Siegel Jacob S, Swanson David A (eds.) (2004). The Methods and Materials of Demography, 2 edition. Elsevier Academic Press, California, USA, San Diego, USA.

Examples

a5 <- as.integer(rownames(pop5_mat)) coefsOA <- graduate_sprague_expand(pop5_mat[,1], Age = a5, OAG = TRUE) coefsclosed <- graduate_sprague_expand(pop5_mat[,1], Age = a5, OAG = FALSE) dim(coefsOA)
#> [1] 101 21
dim(coefsclosed)
#> [1] 105 21