Moultrie {popstudy} | R Documentation |
Moultrie rule for Children Ever Born
Description
Moultrie's proposal for correction of Children Ever Born in five-year grouped ages.
Usage
Moultrie(data, ...)
Arguments
data |
data.drame. It contains at least three variables: five-year grouped ages, number of childs and Children Ever Born (CEB). |
... |
Arguments to be passed to |
Value
Moultrie
returns a data.frame with corrected childs for each number of Children Ever Born and five-year grouped ages.
Author(s)
Cesar Gamboa-Sanabria
References
Moultrie TA, Dorrington RE, Hill AG, Hill K, Timæus IM, Zaba B (2013). Tools for demographic estimation. International Union for the Scientific Study of Population.
See Also
Examples
CEB_data <- tidyr::gather(CEB, ages, childs, -Children_Ever_Born)
results <- Moultrie(CEB_data, ages, childs, Children_Ever_Born)
tidyr::pivot_wider(results, names_from=age, values_from=childs)
[Package popstudy version 1.0.1 Index]