-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Materialized view of Angus sepsis #6
base: main
Are you sure you want to change the base?
Conversation
Great, thanks for making a start on this Kristen. Before we merge the code there are a couple of issues that it would be good to resolve. The main issue is that ICD9 codes in the eICU database include periods and are recorded in a comma separated list, unlike MIMIC. e.g.: SELECT icd9code
FROM diagnosis
LIMIT 5;
icd9code
----------------
414.00, I25.10
491.20, J44.9
491.20, J44.9
428.0, I50.9 This means that matching using methods like |
Thanks Tom. As I understand it, the first entry is the ic9code and then the comma separates the icd10code so I just need the first entry in the list. My change was simply to look at |
edit: scratch that, see below
|
Tom says he's found the same but I thought differently so we'll raise this at our next meeting with the eICU folks! |
@kseverso, we've not forgotten about this - it's still under discussion! |
any progress? @tompollard @kseverso @alistairewj |
Ultimately we're not sure this is appropriate. Unlike the name implies, the diagnosis table is more of an active problem list rather than billed diagnosis codes. Using the billing codes from Angus et al. wouldn't really be valid. |
any suggestion to find the patients with sepsis in eicu dataset ? |
Adapted MIMIC query for eICU for sepsis based on Angus criteria.