Home » Countries » India » Question about Anemia Levels in NFHS5 Adult Data
Question about Anemia Levels in NFHS5 Adult Data [message #30074] |
Thu, 19 September 2024 19:56 |
Shawn
Messages: 3 Registered: September 2024
|
Member |
|
|
Hi everyone,
I'm working with NFHS5 adult data, and I've noticed something strange regarding the anemia level definitions. While they are generally based on WHO guidelines, there are some discrepancies. For instance, WHO defines the range for moderate anemia as 8-10.9, but in the raw data I'm working with, the range is 7-10.9.
Even more confusing, the ranges for different levels of anemia overlap. For example, the maximum value for severe anemia in the data is 7.9, rather than the expected 7, which means there's an overlap between severe and moderate anemia ranges.
Has anyone else encountered this before? Any insights into why the data would be structured like this?
Thanks in advance for your help!
|
|
|
|
Re: Question about Anemia Levels in NFHS5 Adult Data [message #30092 is a reply to message #30080] |
Sun, 22 September 2024 18:39 |
Shawn
Messages: 3 Registered: September 2024
|
Member |
|
|
Hi Tom,
Thank you for your prompt response.
To clarify, I have not recoded the variable. I am working with the "Individual Recode" dataset ("IAIR7EFL.dta") from the India: DHS, 2019-21 dataset, which I accessed via the DHS Program website:
https://dhsprogram.com/data/dataset/India_Standard-DHS_2020. cfm?flag=1.
While the dataset is labeled as individual data, it only includes information from women respondents. Men's data are contained in a separate file. As a result, I did not perform any recoding related to adults, since this dataset only includes data from women. Additionally, I couldn't locate the variables you mentioned in your previous message. In my dataset, the variable representing hemoglobin levels is coded as v456.
I'm not sure if the above information helps. If you have any idea, please let me know.
I really appreciate your support. Thank you!
|
|
|
Re: Question about Anemia Levels in NFHS5 Adult Data [message #30099 is a reply to message #30092] |
Mon, 23 September 2024 13:19 |
Bridgette-DHS
Messages: 3195 Registered: February 2013
|
Senior Member |
|
|
Following is a response from Senior DHS staff member, Tom Pullum:
Sorry--I see that we were talking about the same survey, but different files.
The biometric data are collected during the household survey. The hemoglobin concentrations and anemia levels are coded in the PR file (IAPR7EFL) as ha56 and ha57 for women and hb56 and hb57 for men. The cutoffs for constructing ha57 from ha56 are different from the cutoffs for constructing hb57 from hb56.
During data processing, DHS copies ha56 and ha57 into the IR file (in which cases are women), changing the names to v456 and v457, respectively. hb56 and hb57 are copied into the MR file (in which cases are men) as mv456 and mv457.
For this survey, the copying into the IR file was done correctly, but apparently the copying into the MR file was not done. As a result, the variables for men are ONLY in the PR file, as hb56 and hb57; the variables mv456 and mv457 should appear in the MR file but are missing. If you want these variables for men, you would never find them in an IR file. They should be in the MR file, but for this survey they are not.
The PR and MR files can be merged to correct this omission. Below I will paste Stata lines that will merge hb56 and hb57 into the MR file and will rename them as mv456 and mv457. There are 7,331 men in the MR file who do not have a valid value of mv457 in the merged file. I don't know why. Hope this will help.
* Specify a workspace
cd e:\DHS\DHS_data\scratch
* Open the PR file, prepare for merge
use "C:\Users\26216\ICF\Analysis - Shared Resources\Data\DHSdata\IAPR7EFL.DTA", clear
rename hv024 mv024
rename hv001 mv001
rename hv002 mv002
rename hvidx mv003
rename hb56 mv456
rename hb57 mv457
keep if mv457<.
keep mv*
save IAPR7Etemp.dta, replace
* Open the PR file and merge
use "C:\Users\26216\ICF\Analysis - Shared Resources\Data\DHSdata\IAMR7EFL.DTA", clear
gen in_MR=1
merge 1:1 mv024 mv001 mv002 mv003 using IAPR7Etemp.dta
tab _merge in_MR,m
keep if in_MR==1
drop _merge
* Save this file with a new name
|
|
|
|
Re: Question about Anemia Levels in NFHS5 Adult Data [message #30108 is a reply to message #30100] |
Tue, 24 September 2024 10:05 |
Bridgette-DHS
Messages: 3195 Registered: February 2013
|
Senior Member |
|
|
Following is a response from Senior DHS staff member, Tom Pullum:
Sorry for not seeing the issue earlier. I was thinking there was some mixing of men and women, and they have different standards. I see now that the mixing is of women who are pregnant with women who are not pregnant. An adjustment is made for women who report they are pregnant, because they have higher requirements for iron. Their thresholds for the anemia categories are 10 points lower. Here are the ranges:
So if you look separately at women by pregnancy status (ha54 in the PR file, v213 in the IR file), you will not see any overlap.
A few years ago we did a Methodological Report on the hemoglobin measurements to that date (https://www.dhsprogram.com/pubs/pdf/MR18/MR18.pdf). In section 2.1 of that report you will find something on the differences by sex, smoking, altitude, and pregnancy status.
-
Attachment: anemia.png
(Size: 7.35KB, Downloaded 71 times)
|
|
|
Goto Forum:
Current Time: Tue Nov 12 18:37:32 Coordinated Universal Time 2024
|