frts_14yrs: Apply fertility rates methodology for last fourteen-years to...

Description Usage Arguments Value Examples

View source: R/frts_14yrs.R

Description

Applies a given fertility rates methodology rates case-by-case to a data set and returns a list with the estimates by year.

Usage

1
2
frts_14yrs(m.intvw, y.intvw, m.wmn, y.wmn, age.wmn, m.child, y.child,
  wmn.dummy, id.wmn, weights, data)

Arguments

m.intvw

A numeric or a vector which indicates the month in which the woman were interviewed.

y.intvw

A numeric which indicate the year in which the woman were interviewed.

m.wmn

A vector specifying the woman’s month of birth (mother or not mother).

y.wmn

A vector specifying the woman’s year of birth (mother or not mother).

age.wmn

A vector specifying the woman's age at the time of the interview (mother or not mother).

m.child

A vector specifying the child’s month of birth (if the woman doesn't have child, NA).

y.child

A vector specifying the child’s year of birth (if the woman doesn't have children, NA).

wmn.dummy

A vector which indicate TRUE if the woman isn't duplicate or FALSE if the woman is duplicate.

id.wmn

A vector wich indicate the woman's identification.

weights

A vetor pecifying sampling weights as an alternative to prob (1/weights).

data

A data frame containing the above variables.

Value

An object of class frts_14yrs containing four arrays and a numeric.

Examples

1
2
3
4
5
6
7
## Information from ENADID 2014, INEGI

mg4 <- frts_14yrs(m.intvw=ENTREV_M, y.intvw=2014, m.wmn=FEC_MUJ_M, y.wmn=FEC_MUJ_A,
 age.wmn=EDAD_M, m.child=FEC_HIJ_M, y.child=FEC_HIJ_A, wmn.dummy=MUJER, id.wmn=ID_1,
 weights = FACTOR, data = enadid_2014)

summary(mg4)

YazGonzalez/fertilityRates documentation built on March 29, 2020, 9 a.m.