The DHS Program User Forum
Discussions regarding The DHS Program data and results
Home » Topics » Fertility » Questions about calculating general fertility - Nigeria 2018 DHS (Questions about calculating general fertility - Nigeria 2018 DHS)
Questions about calculating general fertility - Nigeria 2018 DHS [message #27405] Mon, 07 August 2023 12:55 Go to next message
berhardt93 is currently offline  berhardt93
Messages: 13
Registered: September 2021
Member
Hi,

I'm working on calculating GFR for the Nigeria 2018 DHS using R programming and am confused on a few points.

For one, on StatCompiler, the GFR for the 3-years preceding is listed as 182. However in Table C.11 in the DHS report (and I do understand that this is for the seven years prior since it was used to calculate MMR), the general fertility rate is listed as 0.179. I am confused about why these values are vastly different.

Secondly, I'm a bit confused about how to calculate the GFR, given that the numerator is births for women 15-44 years and the denominator is for women-years of exposure for women 15-49 years. But, the GFR is age-adjusted. I am confused about how to include the denominator for 45-49 year olds when there is no numerator calculated.

Thanks,

Blake
Re: Questions about calculating general fertility - Nigeria 2018 DHS [message #27442 is a reply to message #27405] Tue, 15 August 2023 11:54 Go to previous messageGo to next message
Janet-DHS is currently offline  Janet-DHS
Messages: 698
Registered: April 2022
Senior Member
Following is a response from DHS staff member, Tom Pullum:

DHS defines the GFR to be the number of births in an interval of time (in the fertility chapter, this is the past 3 years), regardless of the age of the mother, divided by the woman-years of exposure to age 15-44 (in that interval of time), multiplied by 1000. The GFR in the fertility chapter is NOT standardized.

There are alternative definitions of the GFR. In the chapter on adult and maternal mortality, the GFR is calculated for the same 7-year reference period as the mortality rates, is reduced to births in the age range 15-49 (births before 15 are omitted) and the denominator is expanded to 15-49, the same age range as the mortality rates. The GFR for that chapter is standardized on the age distribution of the women in the IR file at the time of the survey. The steps are to calculate the 7 age-specific rates for age 15-19, ..., 45-49, and then calculate the GFR as a weighted mean of those 7 rates, where the weights are the proportions of women age 15-49 who are 15-19,..., 45-49.

The numbers in Appendix C omit arbitrary factors such as 1000. That's why the GFR in Appendix C is .179 rather than 179. Let us know if you have other questions.
Re: Questions about calculating general fertility - Nigeria 2018 DHS [message #27479 is a reply to message #27442] Sun, 20 August 2023 19:50 Go to previous messageGo to next message
berhardt93 is currently offline  berhardt93
Messages: 13
Registered: September 2021
Member
Hi Tom,

This is super helpful and now I have the denominator. A quick question about the numerator (MMRate) if you don't mind. I'm curious if you have the values at each step of the calculation because I'm getting 478 deaths instead of 451 and can't seem to figure out where I'm going wrong. Here's what I have:
106,590 female siblings (mm2)
12,514 ever deceased female siblings (mm8)
3,679 deceased female siblings at ages 15-49 years (mm7)
1,152 siblings died during pregnancy or within 42 days (mm9)
1,152 siblings died within 42 days of delivery (mm12)
1,109 siblings did not die due to accidents or violence (mm16)
478 siblings that died within the 84 months preceding the survey (mm8, v008)

Thanks,

Blake
Re: Questions about calculating general fertility - Nigeria 2018 DHS [message #27525 is a reply to message #27479] Tue, 29 August 2023 16:27 Go to previous messageGo to next message
Janet-DHS is currently offline  Janet-DHS
Messages: 698
Registered: April 2022
Senior Member
Following is a response from DHS staff member, Tom Pullum:

This is a question about maternal mortality and your subject line is about fertility. I'll respond anyway. I have done some checking and I don't match your 478 maternal deaths OR the 451 maternal deaths in the report and on STATcompiler. I get 439 maternal deaths (that's weighted; my unweighted number is 463). This is puzzling because I am using a Stata program (which I wrote) that matches other surveys (see the text file "adult_mm_rates_do_24Aug2023.txt").

I'm curious about this but don't have time to explore the reason for these discrepancies. Note that the maternal deaths require a rather complex recode of mm9 and mm16: "(mm9==3 | (mm9==2 & mm16==0) | (mm9==5 & mm16==0))". It's complex because accidents and violence may happen during pregnancy or postpartum but they are assumed not to happen at delivery.
Re: Questions about calculating general fertility - Nigeria 2018 DHS [message #27544 is a reply to message #27525] Thu, 31 August 2023 14:19 Go to previous messageGo to next message
berhardt93 is currently offline  berhardt93
Messages: 13
Registered: September 2021
Member
Hi Tom,

I'm now getting the same numbers as you for Nigeria. I ran the code again to compare with the Burundi 2016-2017 and Cameroon 2018 DHS and the numbers your code generates are not the same as those in the report either, at least when I am running it.

Cameroon: 130 deaths
Burundi: 110 deaths

Can you confirm if when you run the STATA code you are generating the right numbers for these countries?

Thanks,

Blake
Re: Questions about calculating general fertility - Nigeria 2018 DHS [message #27591 is a reply to message #27544] Thu, 07 September 2023 17:15 Go to previous messageGo to next message
Janet-DHS is currently offline  Janet-DHS
Messages: 698
Registered: April 2022
Senior Member
Following is a response from DHS staff member, Tom Pullum:

I think you reversed the numbers, but I do match the reports. For Cameroon, the report gives 110 weighted maternal deaths and my program gives 109.57. For Burundi, the report gives 130 weighted maternal deaths and my program gives 129.51. The weighted frequencies in the reports are always rounded to the nearest integer.
Re: Questions about calculating general fertility - Nigeria 2018 DHS [message #27598 is a reply to message #27591] Fri, 08 September 2023 14:02 Go to previous messageGo to next message
berhardt93 is currently offline  berhardt93
Messages: 13
Registered: September 2021
Member
Thanks, Tom. I think this is my last question and it relates to weighting.

I weighed the calculation twice:
- After calculating maternal deaths and dividing them by exposure for each age group
- After calculating age specific fertility rates

Is that incorrect? From the code, it's unclear to me when the different parts should be weighted/not weighted.

Thanks,

Blake
Re: Questions about calculating general fertility - Nigeria 2018 DHS [message #27606 is a reply to message #27598] Mon, 11 September 2023 10:47 Go to previous message
Janet-DHS is currently offline  Janet-DHS
Messages: 698
Registered: April 2022
Senior Member
Following is a response from DHS staff member, Tom Pullum:

You need to use weights in the calculation of the numerators and denominators of the rates. For some commands such as collapse you use [iweight=v005/1000000]. The program I provided includes weights where needed.

There is a so-called "re-weighting" step in the adult and maternal mortality procedure that has nothing to do with the sample weights. It is described in the Guide to DHS Statistics. To calculate the mortality rate for age 15-49, the age-specific mortality rates for 15-19, ..., 45-49 are weighted by the proportions of women or men in the survey who are in those age groups. Similarly for the GFR or General Fertility Rate, using the age-specific fertility rates and the proportions of women in the seven age groups. The re-weighting is equivalent to direct standardization. The program shows how this is done.
Previous Topic: Estimating Pregnancy Outcomes using Nepal DHS 2022
Next Topic: TFR and ASFR at state level using TFR2 in STATA
Goto Forum:
  


Current Time: Sun Apr 28 06:45:25 Coordinated Universal Time 2024