How can I make the leading zeros of the ICD-9 code in the D_ICD_DIAGNOSES.csv file visible? #1264
Unanswered
DongHyukHwang
asked this question in
MIMIC-III
Replies: 1 comment
-
@DongHyukHwang The issue you are having is that your viewer (Excel?) is treating the field as a number, rather than a string. If you open the data in a text editor (e.g. Notepad++, Sublime, VS Code, Vim, etc) you should see the leading "0"s. The fix is to specify the correct data type (char/string) in your editor or code. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I downloaded the csv data from https://physionet.org/content/mimiciii-demo/1.4/. Both '01100' and '1100' are recorded in the ICD-9 code column as '1100'. I am wondering how can I make the leading '0' of '01100' visible.
Beta Was this translation helpful? Give feedback.
All reactions